tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
tencentcloud.getDtsSyncJobs
Start a Neo task
Explain and create a tencentcloud.getDtsSyncJobs resource
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
Use this data source to query detailed information of dts syncJobs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const job = new tencentcloud.DtsSyncJob("job", {
jobName: "tf_dts_test",
payMode: "PostPay",
srcDatabaseType: "mysql",
srcRegion: "ap-guangzhou",
dstDatabaseType: "cynosdbmysql",
dstRegion: "ap-guangzhou",
tags: [{
tagKey: "aaa",
tagValue: "bbb",
}],
autoRenew: 0,
instanceClass: "micro",
});
const syncJobs = tencentcloud.getDtsSyncJobsOutput({
jobId: job.dtsSyncJobId,
jobName: "tf_dts_test",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
job = tencentcloud.DtsSyncJob("job",
job_name="tf_dts_test",
pay_mode="PostPay",
src_database_type="mysql",
src_region="ap-guangzhou",
dst_database_type="cynosdbmysql",
dst_region="ap-guangzhou",
tags=[{
"tag_key": "aaa",
"tag_value": "bbb",
}],
auto_renew=0,
instance_class="micro")
sync_jobs = tencentcloud.get_dts_sync_jobs_output(job_id=job.dts_sync_job_id,
job_name="tf_dts_test")
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 {
job, err := tencentcloud.NewDtsSyncJob(ctx, "job", &tencentcloud.DtsSyncJobArgs{
JobName: pulumi.String("tf_dts_test"),
PayMode: pulumi.String("PostPay"),
SrcDatabaseType: pulumi.String("mysql"),
SrcRegion: pulumi.String("ap-guangzhou"),
DstDatabaseType: pulumi.String("cynosdbmysql"),
DstRegion: pulumi.String("ap-guangzhou"),
Tags: tencentcloud.DtsSyncJobTagArray{
&tencentcloud.DtsSyncJobTagArgs{
TagKey: pulumi.String("aaa"),
TagValue: pulumi.String("bbb"),
},
},
AutoRenew: pulumi.Float64(0),
InstanceClass: pulumi.String("micro"),
})
if err != nil {
return err
}
_ = tencentcloud.GetDtsSyncJobsOutput(ctx, tencentcloud.GetDtsSyncJobsOutputArgs{
JobId: job.DtsSyncJobId,
JobName: pulumi.String("tf_dts_test"),
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var job = new Tencentcloud.DtsSyncJob("job", new()
{
JobName = "tf_dts_test",
PayMode = "PostPay",
SrcDatabaseType = "mysql",
SrcRegion = "ap-guangzhou",
DstDatabaseType = "cynosdbmysql",
DstRegion = "ap-guangzhou",
Tags = new[]
{
new Tencentcloud.Inputs.DtsSyncJobTagArgs
{
TagKey = "aaa",
TagValue = "bbb",
},
},
AutoRenew = 0,
InstanceClass = "micro",
});
var syncJobs = Tencentcloud.GetDtsSyncJobs.Invoke(new()
{
JobId = job.DtsSyncJobId,
JobName = "tf_dts_test",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.DtsSyncJob;
import com.pulumi.tencentcloud.DtsSyncJobArgs;
import com.pulumi.tencentcloud.inputs.DtsSyncJobTagArgs;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetDtsSyncJobsArgs;
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 job = new DtsSyncJob("job", DtsSyncJobArgs.builder()
.jobName("tf_dts_test")
.payMode("PostPay")
.srcDatabaseType("mysql")
.srcRegion("ap-guangzhou")
.dstDatabaseType("cynosdbmysql")
.dstRegion("ap-guangzhou")
.tags(DtsSyncJobTagArgs.builder()
.tagKey("aaa")
.tagValue("bbb")
.build())
.autoRenew(0.0)
.instanceClass("micro")
.build());
final var syncJobs = TencentcloudFunctions.getDtsSyncJobs(GetDtsSyncJobsArgs.builder()
.jobId(job.dtsSyncJobId())
.jobName("tf_dts_test")
.build());
}
}
resources:
job:
type: tencentcloud:DtsSyncJob
properties:
jobName: tf_dts_test
payMode: PostPay
srcDatabaseType: mysql
srcRegion: ap-guangzhou
dstDatabaseType: cynosdbmysql
dstRegion: ap-guangzhou
tags:
- tagKey: aaa
tagValue: bbb
autoRenew: 0
instanceClass: micro
variables:
syncJobs:
fn::invoke:
function: tencentcloud:getDtsSyncJobs
arguments:
jobId: ${job.dtsSyncJobId}
jobName: tf_dts_test
Using getDtsSyncJobs
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDtsSyncJobs(args: GetDtsSyncJobsArgs, opts?: InvokeOptions): Promise<GetDtsSyncJobsResult>
function getDtsSyncJobsOutput(args: GetDtsSyncJobsOutputArgs, opts?: InvokeOptions): Output<GetDtsSyncJobsResult>def get_dts_sync_jobs(id: Optional[str] = None,
job_id: Optional[str] = None,
job_name: Optional[str] = None,
job_type: Optional[str] = None,
order: Optional[str] = None,
order_seq: Optional[str] = None,
pay_mode: Optional[str] = None,
result_output_file: Optional[str] = None,
run_mode: Optional[str] = None,
statuses: Optional[Sequence[str]] = None,
tag_filters: Optional[Sequence[GetDtsSyncJobsTagFilter]] = None,
opts: Optional[InvokeOptions] = None) -> GetDtsSyncJobsResult
def get_dts_sync_jobs_output(id: Optional[pulumi.Input[str]] = None,
job_id: Optional[pulumi.Input[str]] = None,
job_name: Optional[pulumi.Input[str]] = None,
job_type: Optional[pulumi.Input[str]] = None,
order: Optional[pulumi.Input[str]] = None,
order_seq: Optional[pulumi.Input[str]] = None,
pay_mode: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
run_mode: Optional[pulumi.Input[str]] = None,
statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
tag_filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDtsSyncJobsTagFilterArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDtsSyncJobsResult]func GetDtsSyncJobs(ctx *Context, args *GetDtsSyncJobsArgs, opts ...InvokeOption) (*GetDtsSyncJobsResult, error)
func GetDtsSyncJobsOutput(ctx *Context, args *GetDtsSyncJobsOutputArgs, opts ...InvokeOption) GetDtsSyncJobsResultOutput> Note: This function is named GetDtsSyncJobs in the Go SDK.
public static class GetDtsSyncJobs
{
public static Task<GetDtsSyncJobsResult> InvokeAsync(GetDtsSyncJobsArgs args, InvokeOptions? opts = null)
public static Output<GetDtsSyncJobsResult> Invoke(GetDtsSyncJobsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDtsSyncJobsResult> getDtsSyncJobs(GetDtsSyncJobsArgs args, InvokeOptions options)
public static Output<GetDtsSyncJobsResult> getDtsSyncJobs(GetDtsSyncJobsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDtsSyncJobs:getDtsSyncJobs
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Job
Id string - job id.
- Job
Name string - job name.
- Job
Type string - job type.
- Order string
- order field.
- Order
Seq string - order way, optional value is DESC or ASC.
- Pay
Mode string - pay mode, optional value is PrePay or PostPay.
- Result
Output stringFile - Used to save results.
- Run
Mode string - run mode, optional value is mmediate or Timed.
- Statuses List<string>
- status.
- Tag
Filters List<GetDts Sync Jobs Tag Filter> - tag filters.
- Id string
- Job
Id string - job id.
- Job
Name string - job name.
- Job
Type string - job type.
- Order string
- order field.
- Order
Seq string - order way, optional value is DESC or ASC.
- Pay
Mode string - pay mode, optional value is PrePay or PostPay.
- Result
Output stringFile - Used to save results.
- Run
Mode string - run mode, optional value is mmediate or Timed.
- Statuses []string
- status.
- Tag
Filters []GetDts Sync Jobs Tag Filter - tag filters.
- id String
- job
Id String - job id.
- job
Name String - job name.
- job
Type String - job type.
- order String
- order field.
- order
Seq String - order way, optional value is DESC or ASC.
- pay
Mode String - pay mode, optional value is PrePay or PostPay.
- result
Output StringFile - Used to save results.
- run
Mode String - run mode, optional value is mmediate or Timed.
- statuses List<String>
- status.
- tag
Filters List<GetDts Sync Jobs Tag Filter> - tag filters.
- id string
- job
Id string - job id.
- job
Name string - job name.
- job
Type string - job type.
- order string
- order field.
- order
Seq string - order way, optional value is DESC or ASC.
- pay
Mode string - pay mode, optional value is PrePay or PostPay.
- result
Output stringFile - Used to save results.
- run
Mode string - run mode, optional value is mmediate or Timed.
- statuses string[]
- status.
- tag
Filters GetDts Sync Jobs Tag Filter[] - tag filters.
- id str
- job_
id str - job id.
- job_
name str - job name.
- job_
type str - job type.
- order str
- order field.
- order_
seq str - order way, optional value is DESC or ASC.
- pay_
mode str - pay mode, optional value is PrePay or PostPay.
- result_
output_ strfile - Used to save results.
- run_
mode str - run mode, optional value is mmediate or Timed.
- statuses Sequence[str]
- status.
- tag_
filters Sequence[GetDts Sync Jobs Tag Filter] - tag filters.
- id String
- job
Id String - job id.
- job
Name String - job name.
- job
Type String - job type.
- order String
- order field.
- order
Seq String - order way, optional value is DESC or ASC.
- pay
Mode String - pay mode, optional value is PrePay or PostPay.
- result
Output StringFile - Used to save results.
- run
Mode String - run mode, optional value is mmediate or Timed.
- statuses List<String>
- status.
- tag
Filters List<Property Map> - tag filters.
getDtsSyncJobs Result
The following output properties are available:
- Id string
- Lists
List<Get
Dts Sync Jobs List> - sync job list.
- Job
Id string - job id.
- Job
Name string - job name.
- Job
Type string - Order string
- Order
Seq string - Pay
Mode string - pay mode.
- Result
Output stringFile - Run
Mode string - run mode.
- Statuses List<string>
- status.
- Tag
Filters List<GetDts Sync Jobs Tag Filter>
- Id string
- Lists
[]Get
Dts Sync Jobs List - sync job list.
- Job
Id string - job id.
- Job
Name string - job name.
- Job
Type string - Order string
- Order
Seq string - Pay
Mode string - pay mode.
- Result
Output stringFile - Run
Mode string - run mode.
- Statuses []string
- status.
- Tag
Filters []GetDts Sync Jobs Tag Filter
- id String
- lists
List<Get
Dts Sync Jobs List> - sync job list.
- job
Id String - job id.
- job
Name String - job name.
- job
Type String - order String
- order
Seq String - pay
Mode String - pay mode.
- result
Output StringFile - run
Mode String - run mode.
- statuses List<String>
- status.
- tag
Filters List<GetDts Sync Jobs Tag Filter>
- id string
- lists
Get
Dts Sync Jobs List[] - sync job list.
- job
Id string - job id.
- job
Name string - job name.
- job
Type string - order string
- order
Seq string - pay
Mode string - pay mode.
- result
Output stringFile - run
Mode string - run mode.
- statuses string[]
- status.
- tag
Filters GetDts Sync Jobs Tag Filter[]
- id str
- lists
Sequence[Get
Dts Sync Jobs List] - sync job list.
- job_
id str - job id.
- job_
name str - job name.
- job_
type str - order str
- order_
seq str - pay_
mode str - pay mode.
- result_
output_ strfile - run_
mode str - run mode.
- statuses Sequence[str]
- status.
- tag_
filters Sequence[GetDts Sync Jobs Tag Filter]
- id String
- lists List<Property Map>
- sync job list.
- job
Id String - job id.
- job
Name String - job name.
- job
Type String - order String
- order
Seq String - pay
Mode String - pay mode.
- result
Output StringFile - run
Mode String - run mode.
- statuses List<String>
- status.
- tag
Filters List<Property Map>
Supporting Types
GetDtsSyncJobsList
- Actions List<string>
- support action list for current status.
- All
Actions List<string> - all action list.
- Create
Time string - create time.
- Details
List<Get
Dts Sync Jobs List Detail> - tag list.
- Dst
Access stringType - Dst
Database stringType - destination database type.
- Dst
Infos List<GetDts Sync Jobs List Dst Info> - destination info.
- Dst
Region string - destination region.
- End
Time string - end time.
- Expect
Run stringTime - expected run time.
- Expire
Time string - expire time.
- Job
Id string - job id.
- Job
Name string - job name.
- Objects
List<Get
Dts Sync Jobs List Object> - objects.
- Options
List<Get
Dts Sync Jobs List Option> - options.
- Pay
Mode string - pay mode, optional value is PrePay or PostPay.
- Run
Mode string - run mode, optional value is mmediate or Timed.
- Specification string
- specification.
- Src
Access stringType - source access type.
- Src
Database stringType - source database type.
- Src
Infos List<GetDts Sync Jobs List Src Info> - source info.
- Src
Region string - source region.
- Start
Time string - start time.
- Status string
- status.
-
List<Get
Dts Sync Jobs List Tag> - tag list.
- Actions []string
- support action list for current status.
- All
Actions []string - all action list.
- Create
Time string - create time.
- Details
[]Get
Dts Sync Jobs List Detail - tag list.
- Dst
Access stringType - Dst
Database stringType - destination database type.
- Dst
Infos []GetDts Sync Jobs List Dst Info - destination info.
- Dst
Region string - destination region.
- End
Time string - end time.
- Expect
Run stringTime - expected run time.
- Expire
Time string - expire time.
- Job
Id string - job id.
- Job
Name string - job name.
- Objects
[]Get
Dts Sync Jobs List Object - objects.
- Options
[]Get
Dts Sync Jobs List Option - options.
- Pay
Mode string - pay mode, optional value is PrePay or PostPay.
- Run
Mode string - run mode, optional value is mmediate or Timed.
- Specification string
- specification.
- Src
Access stringType - source access type.
- Src
Database stringType - source database type.
- Src
Infos []GetDts Sync Jobs List Src Info - source info.
- Src
Region string - source region.
- Start
Time string - start time.
- Status string
- status.
-
[]Get
Dts Sync Jobs List Tag - tag list.
- actions List<String>
- support action list for current status.
- all
Actions List<String> - all action list.
- create
Time String - create time.
- details
List<Get
Dts Sync Jobs List Detail> - tag list.
- dst
Access StringType - dst
Database StringType - destination database type.
- dst
Infos List<GetDts Sync Jobs List Dst Info> - destination info.
- dst
Region String - destination region.
- end
Time String - end time.
- expect
Run StringTime - expected run time.
- expire
Time String - expire time.
- job
Id String - job id.
- job
Name String - job name.
- objects
List<Get
Dts Sync Jobs List Object> - objects.
- options
List<Get
Dts Sync Jobs List Option> - options.
- pay
Mode String - pay mode, optional value is PrePay or PostPay.
- run
Mode String - run mode, optional value is mmediate or Timed.
- specification String
- specification.
- src
Access StringType - source access type.
- src
Database StringType - source database type.
- src
Infos List<GetDts Sync Jobs List Src Info> - source info.
- src
Region String - source region.
- start
Time String - start time.
- status String
- status.
-
List<Get
Dts Sync Jobs List Tag> - tag list.
- actions string[]
- support action list for current status.
- all
Actions string[] - all action list.
- create
Time string - create time.
- details
Get
Dts Sync Jobs List Detail[] - tag list.
- dst
Access stringType - dst
Database stringType - destination database type.
- dst
Infos GetDts Sync Jobs List Dst Info[] - destination info.
- dst
Region string - destination region.
- end
Time string - end time.
- expect
Run stringTime - expected run time.
- expire
Time string - expire time.
- job
Id string - job id.
- job
Name string - job name.
- objects
Get
Dts Sync Jobs List Object[] - objects.
- options
Get
Dts Sync Jobs List Option[] - options.
- pay
Mode string - pay mode, optional value is PrePay or PostPay.
- run
Mode string - run mode, optional value is mmediate or Timed.
- specification string
- specification.
- src
Access stringType - source access type.
- src
Database stringType - source database type.
- src
Infos GetDts Sync Jobs List Src Info[] - source info.
- src
Region string - source region.
- start
Time string - start time.
- status string
- status.
-
Get
Dts Sync Jobs List Tag[] - tag list.
- actions Sequence[str]
- support action list for current status.
- all_
actions Sequence[str] - all action list.
- create_
time str - create time.
- details
Sequence[Get
Dts Sync Jobs List Detail] - tag list.
- dst_
access_ strtype - dst_
database_ strtype - destination database type.
- dst_
infos Sequence[GetDts Sync Jobs List Dst Info] - destination info.
- dst_
region str - destination region.
- end_
time str - end time.
- expect_
run_ strtime - expected run time.
- expire_
time str - expire time.
- job_
id str - job id.
- job_
name str - job name.
- objects
Sequence[Get
Dts Sync Jobs List Object] - objects.
- options
Sequence[Get
Dts Sync Jobs List Option] - options.
- pay_
mode str - pay mode, optional value is PrePay or PostPay.
- run_
mode str - run mode, optional value is mmediate or Timed.
- specification str
- specification.
- src_
access_ strtype - source access type.
- src_
database_ strtype - source database type.
- src_
infos Sequence[GetDts Sync Jobs List Src Info] - source info.
- src_
region str - source region.
- start_
time str - start time.
- status str
- status.
-
Sequence[Get
Dts Sync Jobs List Tag] - tag list.
- actions List<String>
- support action list for current status.
- all
Actions List<String> - all action list.
- create
Time String - create time.
- details List<Property Map>
- tag list.
- dst
Access StringType - dst
Database StringType - destination database type.
- dst
Infos List<Property Map> - destination info.
- dst
Region String - destination region.
- end
Time String - end time.
- expect
Run StringTime - expected run time.
- expire
Time String - expire time.
- job
Id String - job id.
- job
Name String - job name.
- objects List<Property Map>
- objects.
- options List<Property Map>
- options.
- pay
Mode String - pay mode, optional value is PrePay or PostPay.
- run
Mode String - run mode, optional value is mmediate or Timed.
- specification String
- specification.
- src
Access StringType - source access type.
- src
Database StringType - source database type.
- src
Infos List<Property Map> - source info.
- src
Region String - source region.
- start
Time String - start time.
- status String
- status.
- List<Property Map>
- tag list.
GetDtsSyncJobsListDetail
- Current
Step doubleProgress - current step progress.
- Master
Slave doubleDistance - master slave distance.
- Message string
- message.
- Progress double
- current step progress.
- Seconds
Behind doubleMaster - seconds behind master.
- Step
All double - total step numbers.
- Step
Infos List<GetDts Sync Jobs List Detail Step Info> - step infos.
- Step
Now double - current step number.
- Current
Step float64Progress - current step progress.
- Master
Slave float64Distance - master slave distance.
- Message string
- message.
- Progress float64
- current step progress.
- Seconds
Behind float64Master - seconds behind master.
- Step
All float64 - total step numbers.
- Step
Infos []GetDts Sync Jobs List Detail Step Info - step infos.
- Step
Now float64 - current step number.
- current
Step DoubleProgress - current step progress.
- master
Slave DoubleDistance - master slave distance.
- message String
- message.
- progress Double
- current step progress.
- seconds
Behind DoubleMaster - seconds behind master.
- step
All Double - total step numbers.
- step
Infos List<GetDts Sync Jobs List Detail Step Info> - step infos.
- step
Now Double - current step number.
- current
Step numberProgress - current step progress.
- master
Slave numberDistance - master slave distance.
- message string
- message.
- progress number
- current step progress.
- seconds
Behind numberMaster - seconds behind master.
- step
All number - total step numbers.
- step
Infos GetDts Sync Jobs List Detail Step Info[] - step infos.
- step
Now number - current step number.
- current_
step_ floatprogress - current step progress.
- master_
slave_ floatdistance - master slave distance.
- message str
- message.
- progress float
- current step progress.
- seconds_
behind_ floatmaster - seconds behind master.
- step_
all float - total step numbers.
- step_
infos Sequence[GetDts Sync Jobs List Detail Step Info] - step infos.
- step_
now float - current step number.
- current
Step NumberProgress - current step progress.
- master
Slave NumberDistance - master slave distance.
- message String
- message.
- progress Number
- current step progress.
- seconds
Behind NumberMaster - seconds behind master.
- step
All Number - total step numbers.
- step
Infos List<Property Map> - step infos.
- step
Now Number - current step number.
GetDtsSyncJobsListDetailStepInfo
- Errors
List<Get
Dts Sync Jobs List Detail Step Info Error> - error list.
- Progress double
- current step progress.
- Start
Time string - start time.
- Status string
- status.
- Step
Id string - step id.
- Step
Name string - step name.
- Step
No double - step number.
- Warnings
List<Get
Dts Sync Jobs List Detail Step Info Warning> - waring list.
- Errors
[]Get
Dts Sync Jobs List Detail Step Info Error - error list.
- Progress float64
- current step progress.
- Start
Time string - start time.
- Status string
- status.
- Step
Id string - step id.
- Step
Name string - step name.
- Step
No float64 - step number.
- Warnings
[]Get
Dts Sync Jobs List Detail Step Info Warning - waring list.
- errors
List<Get
Dts Sync Jobs List Detail Step Info Error> - error list.
- progress Double
- current step progress.
- start
Time String - start time.
- status String
- status.
- step
Id String - step id.
- step
Name String - step name.
- step
No Double - step number.
- warnings
List<Get
Dts Sync Jobs List Detail Step Info Warning> - waring list.
- errors
Get
Dts Sync Jobs List Detail Step Info Error[] - error list.
- progress number
- current step progress.
- start
Time string - start time.
- status string
- status.
- step
Id string - step id.
- step
Name string - step name.
- step
No number - step number.
- warnings
Get
Dts Sync Jobs List Detail Step Info Warning[] - waring list.
- errors
Sequence[Get
Dts Sync Jobs List Detail Step Info Error] - error list.
- progress float
- current step progress.
- start_
time str - start time.
- status str
- status.
- step_
id str - step id.
- step_
name str - step name.
- step_
no float - step number.
- warnings
Sequence[Get
Dts Sync Jobs List Detail Step Info Warning] - waring list.
- errors List<Property Map>
- error list.
- progress Number
- current step progress.
- start
Time String - start time.
- status String
- status.
- step
Id String - step id.
- step
Name String - step name.
- step
No Number - step number.
- warnings List<Property Map>
- waring list.
GetDtsSyncJobsListDetailStepInfoError
GetDtsSyncJobsListDetailStepInfoWarning
GetDtsSyncJobsListDstInfo
- Account string
- account.
- Account
Mode string - account mode.
- Account
Role string - account role.
- Ccn
Id string - ccn id.
- Cvm
Instance stringId - cvm instance id.
- Db
Kernel string - database kernel.
- Db
Name string - database name.
- Engine
Version string - engine version.
- Instance
Id string - instance id.
- Ip string
- ip.
- Password string
- password.
- Port double
- port.
- Region string
- region.
- Subnet
Id string - subnet id.
- Supplier string
- supplier.
- Tmp
Secret stringId - temporary secret id.
- Tmp
Secret stringKey - temporary secret key.
- Tmp
Token string - temporary token.
- Uniq
Dcg stringId - dedicated gateway id.
- Uniq
Vpn stringGw Id - vpn gateway id.
- User string
- user.
- Vpc
Id string - vpc id.
- Account string
- account.
- Account
Mode string - account mode.
- Account
Role string - account role.
- Ccn
Id string - ccn id.
- Cvm
Instance stringId - cvm instance id.
- Db
Kernel string - database kernel.
- Db
Name string - database name.
- Engine
Version string - engine version.
- Instance
Id string - instance id.
- Ip string
- ip.
- Password string
- password.
- Port float64
- port.
- Region string
- region.
- Subnet
Id string - subnet id.
- Supplier string
- supplier.
- Tmp
Secret stringId - temporary secret id.
- Tmp
Secret stringKey - temporary secret key.
- Tmp
Token string - temporary token.
- Uniq
Dcg stringId - dedicated gateway id.
- Uniq
Vpn stringGw Id - vpn gateway id.
- User string
- user.
- Vpc
Id string - vpc id.
- account String
- account.
- account
Mode String - account mode.
- account
Role String - account role.
- ccn
Id String - ccn id.
- cvm
Instance StringId - cvm instance id.
- db
Kernel String - database kernel.
- db
Name String - database name.
- engine
Version String - engine version.
- instance
Id String - instance id.
- ip String
- ip.
- password String
- password.
- port Double
- port.
- region String
- region.
- subnet
Id String - subnet id.
- supplier String
- supplier.
- tmp
Secret StringId - temporary secret id.
- tmp
Secret StringKey - temporary secret key.
- tmp
Token String - temporary token.
- uniq
Dcg StringId - dedicated gateway id.
- uniq
Vpn StringGw Id - vpn gateway id.
- user String
- user.
- vpc
Id String - vpc id.
- account string
- account.
- account
Mode string - account mode.
- account
Role string - account role.
- ccn
Id string - ccn id.
- cvm
Instance stringId - cvm instance id.
- db
Kernel string - database kernel.
- db
Name string - database name.
- engine
Version string - engine version.
- instance
Id string - instance id.
- ip string
- ip.
- password string
- password.
- port number
- port.
- region string
- region.
- subnet
Id string - subnet id.
- supplier string
- supplier.
- tmp
Secret stringId - temporary secret id.
- tmp
Secret stringKey - temporary secret key.
- tmp
Token string - temporary token.
- uniq
Dcg stringId - dedicated gateway id.
- uniq
Vpn stringGw Id - vpn gateway id.
- user string
- user.
- vpc
Id string - vpc id.
- account str
- account.
- account_
mode str - account mode.
- account_
role str - account role.
- ccn_
id str - ccn id.
- cvm_
instance_ strid - cvm instance id.
- db_
kernel str - database kernel.
- db_
name str - database name.
- engine_
version str - engine version.
- instance_
id str - instance id.
- ip str
- ip.
- password str
- password.
- port float
- port.
- region str
- region.
- subnet_
id str - subnet id.
- supplier str
- supplier.
- tmp_
secret_ strid - temporary secret id.
- tmp_
secret_ strkey - temporary secret key.
- tmp_
token str - temporary token.
- uniq_
dcg_ strid - dedicated gateway id.
- uniq_
vpn_ strgw_ id - vpn gateway id.
- user str
- user.
- vpc_
id str - vpc id.
- account String
- account.
- account
Mode String - account mode.
- account
Role String - account role.
- ccn
Id String - ccn id.
- cvm
Instance StringId - cvm instance id.
- db
Kernel String - database kernel.
- db
Name String - database name.
- engine
Version String - engine version.
- instance
Id String - instance id.
- ip String
- ip.
- password String
- password.
- port Number
- port.
- region String
- region.
- subnet
Id String - subnet id.
- supplier String
- supplier.
- tmp
Secret StringId - temporary secret id.
- tmp
Secret StringKey - temporary secret key.
- tmp
Token String - temporary token.
- uniq
Dcg StringId - dedicated gateway id.
- uniq
Vpn StringGw Id - vpn gateway id.
- user String
- user.
- vpc
Id String - vpc id.
GetDtsSyncJobsListObject
- Advanced
Objects List<string> - advanced objects.
- Databases
List<Get
Dts Sync Jobs List Object Database> - database list.
- Mode string
- object mode.
- Advanced
Objects []string - advanced objects.
- Databases
[]Get
Dts Sync Jobs List Object Database - database list.
- Mode string
- object mode.
- advanced
Objects List<String> - advanced objects.
- databases
List<Get
Dts Sync Jobs List Object Database> - database list.
- mode String
- object mode.
- advanced
Objects string[] - advanced objects.
- databases
Get
Dts Sync Jobs List Object Database[] - database list.
- mode string
- object mode.
- advanced_
objects Sequence[str] - advanced objects.
- databases
Sequence[Get
Dts Sync Jobs List Object Database] - database list.
- mode str
- object mode.
- advanced
Objects List<String> - advanced objects.
- databases List<Property Map>
- database list.
- mode String
- object mode.
GetDtsSyncJobsListObjectDatabase
- Db
Mode string - database mode.
- Db
Name string - database name.
- Function
Mode string - function mode.
- Functions List<string>
- functions.
- New
Db stringName - new database name.
- New
Schema stringName - new schema name.
- Procedure
Mode string - procedure mode.
- Procedures List<string>
- procedures.
- Schema
Name string - schema name.
- Table
Mode string - table mode.
- Tables
List<Get
Dts Sync Jobs List Object Database Table> - table list.
- View
Mode string - view mode.
- Views
List<Get
Dts Sync Jobs List Object Database View> - view list.
- Db
Mode string - database mode.
- Db
Name string - database name.
- Function
Mode string - function mode.
- Functions []string
- functions.
- New
Db stringName - new database name.
- New
Schema stringName - new schema name.
- Procedure
Mode string - procedure mode.
- Procedures []string
- procedures.
- Schema
Name string - schema name.
- Table
Mode string - table mode.
- Tables
[]Get
Dts Sync Jobs List Object Database Table - table list.
- View
Mode string - view mode.
- Views
[]Get
Dts Sync Jobs List Object Database View - view list.
- db
Mode String - database mode.
- db
Name String - database name.
- function
Mode String - function mode.
- functions List<String>
- functions.
- new
Db StringName - new database name.
- new
Schema StringName - new schema name.
- procedure
Mode String - procedure mode.
- procedures List<String>
- procedures.
- schema
Name String - schema name.
- table
Mode String - table mode.
- tables
List<Get
Dts Sync Jobs List Object Database Table> - table list.
- view
Mode String - view mode.
- views
List<Get
Dts Sync Jobs List Object Database View> - view list.
- db
Mode string - database mode.
- db
Name string - database name.
- function
Mode string - function mode.
- functions string[]
- functions.
- new
Db stringName - new database name.
- new
Schema stringName - new schema name.
- procedure
Mode string - procedure mode.
- procedures string[]
- procedures.
- schema
Name string - schema name.
- table
Mode string - table mode.
- tables
Get
Dts Sync Jobs List Object Database Table[] - table list.
- view
Mode string - view mode.
- views
Get
Dts Sync Jobs List Object Database View[] - view list.
- db_
mode str - database mode.
- db_
name str - database name.
- function_
mode str - function mode.
- functions Sequence[str]
- functions.
- new_
db_ strname - new database name.
- new_
schema_ strname - new schema name.
- procedure_
mode str - procedure mode.
- procedures Sequence[str]
- procedures.
- schema_
name str - schema name.
- table_
mode str - table mode.
- tables
Sequence[Get
Dts Sync Jobs List Object Database Table] - table list.
- view_
mode str - view mode.
- views
Sequence[Get
Dts Sync Jobs List Object Database View] - view list.
- db
Mode String - database mode.
- db
Name String - database name.
- function
Mode String - function mode.
- functions List<String>
- functions.
- new
Db StringName - new database name.
- new
Schema StringName - new schema name.
- procedure
Mode String - procedure mode.
- procedures List<String>
- procedures.
- schema
Name String - schema name.
- table
Mode String - table mode.
- tables List<Property Map>
- table list.
- view
Mode String - view mode.
- views List<Property Map>
- view list.
GetDtsSyncJobsListObjectDatabaseTable
- Filter
Condition string - filter condition.
- New
Table stringName - new table name.
- Table
Name string - table name.
- Filter
Condition string - filter condition.
- New
Table stringName - new table name.
- Table
Name string - table name.
- filter
Condition String - filter condition.
- new
Table StringName - new table name.
- table
Name String - table name.
- filter
Condition string - filter condition.
- new
Table stringName - new table name.
- table
Name string - table name.
- filter_
condition str - filter condition.
- new_
table_ strname - new table name.
- table_
name str - table name.
- filter
Condition String - filter condition.
- new
Table StringName - new table name.
- table
Name String - table name.
GetDtsSyncJobsListObjectDatabaseView
- New
View stringName - new view name.
- View
Name string - view name.
- New
View stringName - new view name.
- View
Name string - view name.
- new
View StringName - new view name.
- view
Name String - view name.
- new
View stringName - new view name.
- view
Name string - view name.
- new_
view_ strname - new view name.
- view_
name str - view name.
- new
View StringName - new view name.
- view
Name String - view name.
GetDtsSyncJobsListOption
- Add
Additional boolColumn - add additional column.
- Conflict
Handle List<GetOptions Dts Sync Jobs List Option Conflict Handle Option> - conflict handle option.
- Conflict
Handle stringType - conflict handle type.
- Ddl
Options List<GetDts Sync Jobs List Option Ddl Option> - ddl options.
- Deal
Of stringExist Same Table - deal of exist same table.
- Init
Type string - init type.
- Op
Types List<string> - operation types.
- Add
Additional boolColumn - add additional column.
- Conflict
Handle []GetOptions Dts Sync Jobs List Option Conflict Handle Option - conflict handle option.
- Conflict
Handle stringType - conflict handle type.
- Ddl
Options []GetDts Sync Jobs List Option Ddl Option - ddl options.
- Deal
Of stringExist Same Table - deal of exist same table.
- Init
Type string - init type.
- Op
Types []string - operation types.
- add
Additional BooleanColumn - add additional column.
- conflict
Handle List<GetOptions Dts Sync Jobs List Option Conflict Handle Option> - conflict handle option.
- conflict
Handle StringType - conflict handle type.
- ddl
Options List<GetDts Sync Jobs List Option Ddl Option> - ddl options.
- deal
Of StringExist Same Table - deal of exist same table.
- init
Type String - init type.
- op
Types List<String> - operation types.
- add
Additional booleanColumn - add additional column.
- conflict
Handle GetOptions Dts Sync Jobs List Option Conflict Handle Option[] - conflict handle option.
- conflict
Handle stringType - conflict handle type.
- ddl
Options GetDts Sync Jobs List Option Ddl Option[] - ddl options.
- deal
Of stringExist Same Table - deal of exist same table.
- init
Type string - init type.
- op
Types string[] - operation types.
- add_
additional_ boolcolumn - add additional column.
- conflict_
handle_ Sequence[Getoptions Dts Sync Jobs List Option Conflict Handle Option] - conflict handle option.
- conflict_
handle_ strtype - conflict handle type.
- ddl_
options Sequence[GetDts Sync Jobs List Option Ddl Option] - ddl options.
- deal_
of_ strexist_ same_ table - deal of exist same table.
- init_
type str - init type.
- op_
types Sequence[str] - operation types.
- add
Additional BooleanColumn - add additional column.
- conflict
Handle List<Property Map>Options - conflict handle option.
- conflict
Handle StringType - conflict handle type.
- ddl
Options List<Property Map> - ddl options.
- deal
Of StringExist Same Table - deal of exist same table.
- init
Type String - init type.
- op
Types List<String> - operation types.
GetDtsSyncJobsListOptionConflictHandleOption
- Condition
Column string - condition column.
- Condition
Operator string - condition override operator.
- Condition
Order stringIn Src And Dst - condition order in source and destination.
- Condition
Column string - condition column.
- Condition
Operator string - condition override operator.
- Condition
Order stringIn Src And Dst - condition order in source and destination.
- condition
Column String - condition column.
- condition
Operator String - condition override operator.
- condition
Order StringIn Src And Dst - condition order in source and destination.
- condition
Column string - condition column.
- condition
Operator string - condition override operator.
- condition
Order stringIn Src And Dst - condition order in source and destination.
- condition_
column str - condition column.
- condition_
operator str - condition override operator.
- condition_
order_ strin_ src_ and_ dst - condition order in source and destination.
- condition
Column String - condition column.
- condition
Operator String - condition override operator.
- condition
Order StringIn Src And Dst - condition order in source and destination.
GetDtsSyncJobsListOptionDdlOption
- ddl_
object str - ddl object.
- ddl_
values Sequence[str] - ddl value.
GetDtsSyncJobsListSrcInfo
- Account string
- account.
- Account
Mode string - account mode.
- Account
Role string - account role.
- Ccn
Id string - ccn id.
- Cvm
Instance stringId - cvm instance id.
- Db
Kernel string - database kernel.
- Db
Name string - database name.
- Engine
Version string - engine version.
- Instance
Id string - instance id.
- Ip string
- ip.
- Password string
- password.
- Port double
- port.
- Region string
- region.
- Subnet
Id string - subnet id.
- Supplier string
- supplier.
- Tmp
Secret stringId - temporary secret id.
- Tmp
Secret stringKey - temporary secret key.
- Tmp
Token string - temporary token.
- Uniq
Dcg stringId - dedicated gateway id.
- Uniq
Vpn stringGw Id - vpn gateway id.
- User string
- user.
- Vpc
Id string - vpc id.
- Account string
- account.
- Account
Mode string - account mode.
- Account
Role string - account role.
- Ccn
Id string - ccn id.
- Cvm
Instance stringId - cvm instance id.
- Db
Kernel string - database kernel.
- Db
Name string - database name.
- Engine
Version string - engine version.
- Instance
Id string - instance id.
- Ip string
- ip.
- Password string
- password.
- Port float64
- port.
- Region string
- region.
- Subnet
Id string - subnet id.
- Supplier string
- supplier.
- Tmp
Secret stringId - temporary secret id.
- Tmp
Secret stringKey - temporary secret key.
- Tmp
Token string - temporary token.
- Uniq
Dcg stringId - dedicated gateway id.
- Uniq
Vpn stringGw Id - vpn gateway id.
- User string
- user.
- Vpc
Id string - vpc id.
- account String
- account.
- account
Mode String - account mode.
- account
Role String - account role.
- ccn
Id String - ccn id.
- cvm
Instance StringId - cvm instance id.
- db
Kernel String - database kernel.
- db
Name String - database name.
- engine
Version String - engine version.
- instance
Id String - instance id.
- ip String
- ip.
- password String
- password.
- port Double
- port.
- region String
- region.
- subnet
Id String - subnet id.
- supplier String
- supplier.
- tmp
Secret StringId - temporary secret id.
- tmp
Secret StringKey - temporary secret key.
- tmp
Token String - temporary token.
- uniq
Dcg StringId - dedicated gateway id.
- uniq
Vpn StringGw Id - vpn gateway id.
- user String
- user.
- vpc
Id String - vpc id.
- account string
- account.
- account
Mode string - account mode.
- account
Role string - account role.
- ccn
Id string - ccn id.
- cvm
Instance stringId - cvm instance id.
- db
Kernel string - database kernel.
- db
Name string - database name.
- engine
Version string - engine version.
- instance
Id string - instance id.
- ip string
- ip.
- password string
- password.
- port number
- port.
- region string
- region.
- subnet
Id string - subnet id.
- supplier string
- supplier.
- tmp
Secret stringId - temporary secret id.
- tmp
Secret stringKey - temporary secret key.
- tmp
Token string - temporary token.
- uniq
Dcg stringId - dedicated gateway id.
- uniq
Vpn stringGw Id - vpn gateway id.
- user string
- user.
- vpc
Id string - vpc id.
- account str
- account.
- account_
mode str - account mode.
- account_
role str - account role.
- ccn_
id str - ccn id.
- cvm_
instance_ strid - cvm instance id.
- db_
kernel str - database kernel.
- db_
name str - database name.
- engine_
version str - engine version.
- instance_
id str - instance id.
- ip str
- ip.
- password str
- password.
- port float
- port.
- region str
- region.
- subnet_
id str - subnet id.
- supplier str
- supplier.
- tmp_
secret_ strid - temporary secret id.
- tmp_
secret_ strkey - temporary secret key.
- tmp_
token str - temporary token.
- uniq_
dcg_ strid - dedicated gateway id.
- uniq_
vpn_ strgw_ id - vpn gateway id.
- user str
- user.
- vpc_
id str - vpc id.
- account String
- account.
- account
Mode String - account mode.
- account
Role String - account role.
- ccn
Id String - ccn id.
- cvm
Instance StringId - cvm instance id.
- db
Kernel String - database kernel.
- db
Name String - database name.
- engine
Version String - engine version.
- instance
Id String - instance id.
- ip String
- ip.
- password String
- password.
- port Number
- port.
- region String
- region.
- subnet
Id String - subnet id.
- supplier String
- supplier.
- tmp
Secret StringId - temporary secret id.
- tmp
Secret StringKey - temporary secret key.
- tmp
Token String - temporary token.
- uniq
Dcg StringId - dedicated gateway id.
- uniq
Vpn StringGw Id - vpn gateway id.
- user String
- user.
- vpc
Id String - vpc id.
GetDtsSyncJobsListTag
GetDtsSyncJobsTagFilter
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
