1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getDtsSyncJobs
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getDtsSyncJobs

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 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)
                .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 dictionary

    The following arguments are supported:

    Id string
    JobId string
    job id.
    JobName string
    job name.
    JobType string
    job type.
    Order string
    order field.
    OrderSeq string
    order way, optional value is DESC or ASC.
    PayMode string
    pay mode, optional value is PrePay or PostPay.
    ResultOutputFile string
    Used to save results.
    RunMode string
    run mode, optional value is mmediate or Timed.
    Statuses List<string>
    status.
    TagFilters List<GetDtsSyncJobsTagFilter>
    tag filters.
    Id string
    JobId string
    job id.
    JobName string
    job name.
    JobType string
    job type.
    Order string
    order field.
    OrderSeq string
    order way, optional value is DESC or ASC.
    PayMode string
    pay mode, optional value is PrePay or PostPay.
    ResultOutputFile string
    Used to save results.
    RunMode string
    run mode, optional value is mmediate or Timed.
    Statuses []string
    status.
    TagFilters []GetDtsSyncJobsTagFilter
    tag filters.
    id String
    jobId String
    job id.
    jobName String
    job name.
    jobType String
    job type.
    order String
    order field.
    orderSeq String
    order way, optional value is DESC or ASC.
    payMode String
    pay mode, optional value is PrePay or PostPay.
    resultOutputFile String
    Used to save results.
    runMode String
    run mode, optional value is mmediate or Timed.
    statuses List<String>
    status.
    tagFilters List<GetDtsSyncJobsTagFilter>
    tag filters.
    id string
    jobId string
    job id.
    jobName string
    job name.
    jobType string
    job type.
    order string
    order field.
    orderSeq string
    order way, optional value is DESC or ASC.
    payMode string
    pay mode, optional value is PrePay or PostPay.
    resultOutputFile string
    Used to save results.
    runMode string
    run mode, optional value is mmediate or Timed.
    statuses string[]
    status.
    tagFilters GetDtsSyncJobsTagFilter[]
    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_file str
    Used to save results.
    run_mode str
    run mode, optional value is mmediate or Timed.
    statuses Sequence[str]
    status.
    tag_filters Sequence[GetDtsSyncJobsTagFilter]
    tag filters.
    id String
    jobId String
    job id.
    jobName String
    job name.
    jobType String
    job type.
    order String
    order field.
    orderSeq String
    order way, optional value is DESC or ASC.
    payMode String
    pay mode, optional value is PrePay or PostPay.
    resultOutputFile String
    Used to save results.
    runMode String
    run mode, optional value is mmediate or Timed.
    statuses List<String>
    status.
    tagFilters List<Property Map>
    tag filters.

    getDtsSyncJobs Result

    The following output properties are available:

    Id string
    Lists List<GetDtsSyncJobsList>
    sync job list.
    JobId string
    job id.
    JobName string
    job name.
    JobType string
    Order string
    OrderSeq string
    PayMode string
    pay mode.
    ResultOutputFile string
    RunMode string
    run mode.
    Statuses List<string>
    status.
    TagFilters List<GetDtsSyncJobsTagFilter>
    Id string
    Lists []GetDtsSyncJobsList
    sync job list.
    JobId string
    job id.
    JobName string
    job name.
    JobType string
    Order string
    OrderSeq string
    PayMode string
    pay mode.
    ResultOutputFile string
    RunMode string
    run mode.
    Statuses []string
    status.
    TagFilters []GetDtsSyncJobsTagFilter
    id String
    lists List<GetDtsSyncJobsList>
    sync job list.
    jobId String
    job id.
    jobName String
    job name.
    jobType String
    order String
    orderSeq String
    payMode String
    pay mode.
    resultOutputFile String
    runMode String
    run mode.
    statuses List<String>
    status.
    tagFilters List<GetDtsSyncJobsTagFilter>
    id string
    lists GetDtsSyncJobsList[]
    sync job list.
    jobId string
    job id.
    jobName string
    job name.
    jobType string
    order string
    orderSeq string
    payMode string
    pay mode.
    resultOutputFile string
    runMode string
    run mode.
    statuses string[]
    status.
    tagFilters GetDtsSyncJobsTagFilter[]
    id str
    lists Sequence[GetDtsSyncJobsList]
    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_file str
    run_mode str
    run mode.
    statuses Sequence[str]
    status.
    tag_filters Sequence[GetDtsSyncJobsTagFilter]
    id String
    lists List<Property Map>
    sync job list.
    jobId String
    job id.
    jobName String
    job name.
    jobType String
    order String
    orderSeq String
    payMode String
    pay mode.
    resultOutputFile String
    runMode String
    run mode.
    statuses List<String>
    status.
    tagFilters List<Property Map>

    Supporting Types

    GetDtsSyncJobsList

    Actions List<string>
    support action list for current status.
    AllActions List<string>
    all action list.
    CreateTime string
    create time.
    Details List<GetDtsSyncJobsListDetail>
    tag list.
    DstAccessType string
    DstDatabaseType string
    destination database type.
    DstInfos List<GetDtsSyncJobsListDstInfo>
    destination info.
    DstRegion string
    destination region.
    EndTime string
    end time.
    ExpectRunTime string
    expected run time.
    ExpireTime string
    expire time.
    JobId string
    job id.
    JobName string
    job name.
    Objects List<GetDtsSyncJobsListObject>
    objects.
    Options List<GetDtsSyncJobsListOption>
    options.
    PayMode string
    pay mode, optional value is PrePay or PostPay.
    RunMode string
    run mode, optional value is mmediate or Timed.
    Specification string
    specification.
    SrcAccessType string
    source access type.
    SrcDatabaseType string
    source database type.
    SrcInfos List<GetDtsSyncJobsListSrcInfo>
    source info.
    SrcRegion string
    source region.
    StartTime string
    start time.
    Status string
    status.
    Tags List<GetDtsSyncJobsListTag>
    tag list.
    Actions []string
    support action list for current status.
    AllActions []string
    all action list.
    CreateTime string
    create time.
    Details []GetDtsSyncJobsListDetail
    tag list.
    DstAccessType string
    DstDatabaseType string
    destination database type.
    DstInfos []GetDtsSyncJobsListDstInfo
    destination info.
    DstRegion string
    destination region.
    EndTime string
    end time.
    ExpectRunTime string
    expected run time.
    ExpireTime string
    expire time.
    JobId string
    job id.
    JobName string
    job name.
    Objects []GetDtsSyncJobsListObject
    objects.
    Options []GetDtsSyncJobsListOption
    options.
    PayMode string
    pay mode, optional value is PrePay or PostPay.
    RunMode string
    run mode, optional value is mmediate or Timed.
    Specification string
    specification.
    SrcAccessType string
    source access type.
    SrcDatabaseType string
    source database type.
    SrcInfos []GetDtsSyncJobsListSrcInfo
    source info.
    SrcRegion string
    source region.
    StartTime string
    start time.
    Status string
    status.
    Tags []GetDtsSyncJobsListTag
    tag list.
    actions List<String>
    support action list for current status.
    allActions List<String>
    all action list.
    createTime String
    create time.
    details List<GetDtsSyncJobsListDetail>
    tag list.
    dstAccessType String
    dstDatabaseType String
    destination database type.
    dstInfos List<GetDtsSyncJobsListDstInfo>
    destination info.
    dstRegion String
    destination region.
    endTime String
    end time.
    expectRunTime String
    expected run time.
    expireTime String
    expire time.
    jobId String
    job id.
    jobName String
    job name.
    objects List<GetDtsSyncJobsListObject>
    objects.
    options List<GetDtsSyncJobsListOption>
    options.
    payMode String
    pay mode, optional value is PrePay or PostPay.
    runMode String
    run mode, optional value is mmediate or Timed.
    specification String
    specification.
    srcAccessType String
    source access type.
    srcDatabaseType String
    source database type.
    srcInfos List<GetDtsSyncJobsListSrcInfo>
    source info.
    srcRegion String
    source region.
    startTime String
    start time.
    status String
    status.
    tags List<GetDtsSyncJobsListTag>
    tag list.
    actions string[]
    support action list for current status.
    allActions string[]
    all action list.
    createTime string
    create time.
    details GetDtsSyncJobsListDetail[]
    tag list.
    dstAccessType string
    dstDatabaseType string
    destination database type.
    dstInfos GetDtsSyncJobsListDstInfo[]
    destination info.
    dstRegion string
    destination region.
    endTime string
    end time.
    expectRunTime string
    expected run time.
    expireTime string
    expire time.
    jobId string
    job id.
    jobName string
    job name.
    objects GetDtsSyncJobsListObject[]
    objects.
    options GetDtsSyncJobsListOption[]
    options.
    payMode string
    pay mode, optional value is PrePay or PostPay.
    runMode string
    run mode, optional value is mmediate or Timed.
    specification string
    specification.
    srcAccessType string
    source access type.
    srcDatabaseType string
    source database type.
    srcInfos GetDtsSyncJobsListSrcInfo[]
    source info.
    srcRegion string
    source region.
    startTime string
    start time.
    status string
    status.
    tags GetDtsSyncJobsListTag[]
    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[GetDtsSyncJobsListDetail]
    tag list.
    dst_access_type str
    dst_database_type str
    destination database type.
    dst_infos Sequence[GetDtsSyncJobsListDstInfo]
    destination info.
    dst_region str
    destination region.
    end_time str
    end time.
    expect_run_time str
    expected run time.
    expire_time str
    expire time.
    job_id str
    job id.
    job_name str
    job name.
    objects Sequence[GetDtsSyncJobsListObject]
    objects.
    options Sequence[GetDtsSyncJobsListOption]
    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_type str
    source access type.
    src_database_type str
    source database type.
    src_infos Sequence[GetDtsSyncJobsListSrcInfo]
    source info.
    src_region str
    source region.
    start_time str
    start time.
    status str
    status.
    tags Sequence[GetDtsSyncJobsListTag]
    tag list.
    actions List<String>
    support action list for current status.
    allActions List<String>
    all action list.
    createTime String
    create time.
    details List<Property Map>
    tag list.
    dstAccessType String
    dstDatabaseType String
    destination database type.
    dstInfos List<Property Map>
    destination info.
    dstRegion String
    destination region.
    endTime String
    end time.
    expectRunTime String
    expected run time.
    expireTime String
    expire time.
    jobId String
    job id.
    jobName String
    job name.
    objects List<Property Map>
    objects.
    options List<Property Map>
    options.
    payMode String
    pay mode, optional value is PrePay or PostPay.
    runMode String
    run mode, optional value is mmediate or Timed.
    specification String
    specification.
    srcAccessType String
    source access type.
    srcDatabaseType String
    source database type.
    srcInfos List<Property Map>
    source info.
    srcRegion String
    source region.
    startTime String
    start time.
    status String
    status.
    tags List<Property Map>
    tag list.

    GetDtsSyncJobsListDetail

    CurrentStepProgress double
    current step progress.
    MasterSlaveDistance double
    master slave distance.
    Message string
    message.
    Progress double
    current step progress.
    SecondsBehindMaster double
    seconds behind master.
    StepAll double
    total step numbers.
    StepInfos List<GetDtsSyncJobsListDetailStepInfo>
    step infos.
    StepNow double
    current step number.
    CurrentStepProgress float64
    current step progress.
    MasterSlaveDistance float64
    master slave distance.
    Message string
    message.
    Progress float64
    current step progress.
    SecondsBehindMaster float64
    seconds behind master.
    StepAll float64
    total step numbers.
    StepInfos []GetDtsSyncJobsListDetailStepInfo
    step infos.
    StepNow float64
    current step number.
    currentStepProgress Double
    current step progress.
    masterSlaveDistance Double
    master slave distance.
    message String
    message.
    progress Double
    current step progress.
    secondsBehindMaster Double
    seconds behind master.
    stepAll Double
    total step numbers.
    stepInfos List<GetDtsSyncJobsListDetailStepInfo>
    step infos.
    stepNow Double
    current step number.
    currentStepProgress number
    current step progress.
    masterSlaveDistance number
    master slave distance.
    message string
    message.
    progress number
    current step progress.
    secondsBehindMaster number
    seconds behind master.
    stepAll number
    total step numbers.
    stepInfos GetDtsSyncJobsListDetailStepInfo[]
    step infos.
    stepNow number
    current step number.
    current_step_progress float
    current step progress.
    master_slave_distance float
    master slave distance.
    message str
    message.
    progress float
    current step progress.
    seconds_behind_master float
    seconds behind master.
    step_all float
    total step numbers.
    step_infos Sequence[GetDtsSyncJobsListDetailStepInfo]
    step infos.
    step_now float
    current step number.
    currentStepProgress Number
    current step progress.
    masterSlaveDistance Number
    master slave distance.
    message String
    message.
    progress Number
    current step progress.
    secondsBehindMaster Number
    seconds behind master.
    stepAll Number
    total step numbers.
    stepInfos List<Property Map>
    step infos.
    stepNow Number
    current step number.

    GetDtsSyncJobsListDetailStepInfo

    Errors List<GetDtsSyncJobsListDetailStepInfoError>
    error list.
    Progress double
    current step progress.
    StartTime string
    start time.
    Status string
    status.
    StepId string
    step id.
    StepName string
    step name.
    StepNo double
    step number.
    Warnings List<GetDtsSyncJobsListDetailStepInfoWarning>
    waring list.
    Errors []GetDtsSyncJobsListDetailStepInfoError
    error list.
    Progress float64
    current step progress.
    StartTime string
    start time.
    Status string
    status.
    StepId string
    step id.
    StepName string
    step name.
    StepNo float64
    step number.
    Warnings []GetDtsSyncJobsListDetailStepInfoWarning
    waring list.
    errors List<GetDtsSyncJobsListDetailStepInfoError>
    error list.
    progress Double
    current step progress.
    startTime String
    start time.
    status String
    status.
    stepId String
    step id.
    stepName String
    step name.
    stepNo Double
    step number.
    warnings List<GetDtsSyncJobsListDetailStepInfoWarning>
    waring list.
    errors GetDtsSyncJobsListDetailStepInfoError[]
    error list.
    progress number
    current step progress.
    startTime string
    start time.
    status string
    status.
    stepId string
    step id.
    stepName string
    step name.
    stepNo number
    step number.
    warnings GetDtsSyncJobsListDetailStepInfoWarning[]
    waring list.
    errors Sequence[GetDtsSyncJobsListDetailStepInfoError]
    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[GetDtsSyncJobsListDetailStepInfoWarning]
    waring list.
    errors List<Property Map>
    error list.
    progress Number
    current step progress.
    startTime String
    start time.
    status String
    status.
    stepId String
    step id.
    stepName String
    step name.
    stepNo Number
    step number.
    warnings List<Property Map>
    waring list.

    GetDtsSyncJobsListDetailStepInfoError

    Code string
    code.
    HelpDoc string
    help document.
    Message string
    message.
    Solution string
    solution.
    Code string
    code.
    HelpDoc string
    help document.
    Message string
    message.
    Solution string
    solution.
    code String
    code.
    helpDoc String
    help document.
    message String
    message.
    solution String
    solution.
    code string
    code.
    helpDoc string
    help document.
    message string
    message.
    solution string
    solution.
    code str
    code.
    help_doc str
    help document.
    message str
    message.
    solution str
    solution.
    code String
    code.
    helpDoc String
    help document.
    message String
    message.
    solution String
    solution.

    GetDtsSyncJobsListDetailStepInfoWarning

    Code string
    code.
    HelpDoc string
    help document.
    Message string
    message.
    Solution string
    solution.
    Code string
    code.
    HelpDoc string
    help document.
    Message string
    message.
    Solution string
    solution.
    code String
    code.
    helpDoc String
    help document.
    message String
    message.
    solution String
    solution.
    code string
    code.
    helpDoc string
    help document.
    message string
    message.
    solution string
    solution.
    code str
    code.
    help_doc str
    help document.
    message str
    message.
    solution str
    solution.
    code String
    code.
    helpDoc String
    help document.
    message String
    message.
    solution String
    solution.

    GetDtsSyncJobsListDstInfo

    Account string
    account.
    AccountMode string
    account mode.
    AccountRole string
    account role.
    CcnId string
    ccn id.
    CvmInstanceId string
    cvm instance id.
    DbKernel string
    database kernel.
    DbName string
    database name.
    EngineVersion string
    engine version.
    InstanceId string
    instance id.
    Ip string
    ip.
    Password string
    password.
    Port double
    port.
    Region string
    region.
    SubnetId string
    subnet id.
    Supplier string
    supplier.
    TmpSecretId string
    temporary secret id.
    TmpSecretKey string
    temporary secret key.
    TmpToken string
    temporary token.
    UniqDcgId string
    dedicated gateway id.
    UniqVpnGwId string
    vpn gateway id.
    User string
    user.
    VpcId string
    vpc id.
    Account string
    account.
    AccountMode string
    account mode.
    AccountRole string
    account role.
    CcnId string
    ccn id.
    CvmInstanceId string
    cvm instance id.
    DbKernel string
    database kernel.
    DbName string
    database name.
    EngineVersion string
    engine version.
    InstanceId string
    instance id.
    Ip string
    ip.
    Password string
    password.
    Port float64
    port.
    Region string
    region.
    SubnetId string
    subnet id.
    Supplier string
    supplier.
    TmpSecretId string
    temporary secret id.
    TmpSecretKey string
    temporary secret key.
    TmpToken string
    temporary token.
    UniqDcgId string
    dedicated gateway id.
    UniqVpnGwId string
    vpn gateway id.
    User string
    user.
    VpcId string
    vpc id.
    account String
    account.
    accountMode String
    account mode.
    accountRole String
    account role.
    ccnId String
    ccn id.
    cvmInstanceId String
    cvm instance id.
    dbKernel String
    database kernel.
    dbName String
    database name.
    engineVersion String
    engine version.
    instanceId String
    instance id.
    ip String
    ip.
    password String
    password.
    port Double
    port.
    region String
    region.
    subnetId String
    subnet id.
    supplier String
    supplier.
    tmpSecretId String
    temporary secret id.
    tmpSecretKey String
    temporary secret key.
    tmpToken String
    temporary token.
    uniqDcgId String
    dedicated gateway id.
    uniqVpnGwId String
    vpn gateway id.
    user String
    user.
    vpcId String
    vpc id.
    account string
    account.
    accountMode string
    account mode.
    accountRole string
    account role.
    ccnId string
    ccn id.
    cvmInstanceId string
    cvm instance id.
    dbKernel string
    database kernel.
    dbName string
    database name.
    engineVersion string
    engine version.
    instanceId string
    instance id.
    ip string
    ip.
    password string
    password.
    port number
    port.
    region string
    region.
    subnetId string
    subnet id.
    supplier string
    supplier.
    tmpSecretId string
    temporary secret id.
    tmpSecretKey string
    temporary secret key.
    tmpToken string
    temporary token.
    uniqDcgId string
    dedicated gateway id.
    uniqVpnGwId string
    vpn gateway id.
    user string
    user.
    vpcId string
    vpc id.
    account str
    account.
    account_mode str
    account mode.
    account_role str
    account role.
    ccn_id str
    ccn id.
    cvm_instance_id str
    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_id str
    temporary secret id.
    tmp_secret_key str
    temporary secret key.
    tmp_token str
    temporary token.
    uniq_dcg_id str
    dedicated gateway id.
    uniq_vpn_gw_id str
    vpn gateway id.
    user str
    user.
    vpc_id str
    vpc id.
    account String
    account.
    accountMode String
    account mode.
    accountRole String
    account role.
    ccnId String
    ccn id.
    cvmInstanceId String
    cvm instance id.
    dbKernel String
    database kernel.
    dbName String
    database name.
    engineVersion String
    engine version.
    instanceId String
    instance id.
    ip String
    ip.
    password String
    password.
    port Number
    port.
    region String
    region.
    subnetId String
    subnet id.
    supplier String
    supplier.
    tmpSecretId String
    temporary secret id.
    tmpSecretKey String
    temporary secret key.
    tmpToken String
    temporary token.
    uniqDcgId String
    dedicated gateway id.
    uniqVpnGwId String
    vpn gateway id.
    user String
    user.
    vpcId String
    vpc id.

    GetDtsSyncJobsListObject

    AdvancedObjects List<string>
    advanced objects.
    Databases List<GetDtsSyncJobsListObjectDatabase>
    database list.
    Mode string
    object mode.
    AdvancedObjects []string
    advanced objects.
    Databases []GetDtsSyncJobsListObjectDatabase
    database list.
    Mode string
    object mode.
    advancedObjects List<String>
    advanced objects.
    databases List<GetDtsSyncJobsListObjectDatabase>
    database list.
    mode String
    object mode.
    advancedObjects string[]
    advanced objects.
    databases GetDtsSyncJobsListObjectDatabase[]
    database list.
    mode string
    object mode.
    advanced_objects Sequence[str]
    advanced objects.
    databases Sequence[GetDtsSyncJobsListObjectDatabase]
    database list.
    mode str
    object mode.
    advancedObjects List<String>
    advanced objects.
    databases List<Property Map>
    database list.
    mode String
    object mode.

    GetDtsSyncJobsListObjectDatabase

    DbMode string
    database mode.
    DbName string
    database name.
    FunctionMode string
    function mode.
    Functions List<string>
    functions.
    NewDbName string
    new database name.
    NewSchemaName string
    new schema name.
    ProcedureMode string
    procedure mode.
    Procedures List<string>
    procedures.
    SchemaName string
    schema name.
    TableMode string
    table mode.
    Tables List<GetDtsSyncJobsListObjectDatabaseTable>
    table list.
    ViewMode string
    view mode.
    Views List<GetDtsSyncJobsListObjectDatabaseView>
    view list.
    DbMode string
    database mode.
    DbName string
    database name.
    FunctionMode string
    function mode.
    Functions []string
    functions.
    NewDbName string
    new database name.
    NewSchemaName string
    new schema name.
    ProcedureMode string
    procedure mode.
    Procedures []string
    procedures.
    SchemaName string
    schema name.
    TableMode string
    table mode.
    Tables []GetDtsSyncJobsListObjectDatabaseTable
    table list.
    ViewMode string
    view mode.
    Views []GetDtsSyncJobsListObjectDatabaseView
    view list.
    dbMode String
    database mode.
    dbName String
    database name.
    functionMode String
    function mode.
    functions List<String>
    functions.
    newDbName String
    new database name.
    newSchemaName String
    new schema name.
    procedureMode String
    procedure mode.
    procedures List<String>
    procedures.
    schemaName String
    schema name.
    tableMode String
    table mode.
    tables List<GetDtsSyncJobsListObjectDatabaseTable>
    table list.
    viewMode String
    view mode.
    views List<GetDtsSyncJobsListObjectDatabaseView>
    view list.
    dbMode string
    database mode.
    dbName string
    database name.
    functionMode string
    function mode.
    functions string[]
    functions.
    newDbName string
    new database name.
    newSchemaName string
    new schema name.
    procedureMode string
    procedure mode.
    procedures string[]
    procedures.
    schemaName string
    schema name.
    tableMode string
    table mode.
    tables GetDtsSyncJobsListObjectDatabaseTable[]
    table list.
    viewMode string
    view mode.
    views GetDtsSyncJobsListObjectDatabaseView[]
    view list.
    db_mode str
    database mode.
    db_name str
    database name.
    function_mode str
    function mode.
    functions Sequence[str]
    functions.
    new_db_name str
    new database name.
    new_schema_name str
    new schema name.
    procedure_mode str
    procedure mode.
    procedures Sequence[str]
    procedures.
    schema_name str
    schema name.
    table_mode str
    table mode.
    tables Sequence[GetDtsSyncJobsListObjectDatabaseTable]
    table list.
    view_mode str
    view mode.
    views Sequence[GetDtsSyncJobsListObjectDatabaseView]
    view list.
    dbMode String
    database mode.
    dbName String
    database name.
    functionMode String
    function mode.
    functions List<String>
    functions.
    newDbName String
    new database name.
    newSchemaName String
    new schema name.
    procedureMode String
    procedure mode.
    procedures List<String>
    procedures.
    schemaName String
    schema name.
    tableMode String
    table mode.
    tables List<Property Map>
    table list.
    viewMode String
    view mode.
    views List<Property Map>
    view list.

    GetDtsSyncJobsListObjectDatabaseTable

    FilterCondition string
    filter condition.
    NewTableName string
    new table name.
    TableName string
    table name.
    FilterCondition string
    filter condition.
    NewTableName string
    new table name.
    TableName string
    table name.
    filterCondition String
    filter condition.
    newTableName String
    new table name.
    tableName String
    table name.
    filterCondition string
    filter condition.
    newTableName string
    new table name.
    tableName string
    table name.
    filter_condition str
    filter condition.
    new_table_name str
    new table name.
    table_name str
    table name.
    filterCondition String
    filter condition.
    newTableName String
    new table name.
    tableName String
    table name.

    GetDtsSyncJobsListObjectDatabaseView

    NewViewName string
    new view name.
    ViewName string
    view name.
    NewViewName string
    new view name.
    ViewName string
    view name.
    newViewName String
    new view name.
    viewName String
    view name.
    newViewName string
    new view name.
    viewName string
    view name.
    new_view_name str
    new view name.
    view_name str
    view name.
    newViewName String
    new view name.
    viewName String
    view name.

    GetDtsSyncJobsListOption

    AddAdditionalColumn bool
    add additional column.
    ConflictHandleOptions List<GetDtsSyncJobsListOptionConflictHandleOption>
    conflict handle option.
    ConflictHandleType string
    conflict handle type.
    DdlOptions List<GetDtsSyncJobsListOptionDdlOption>
    ddl options.
    DealOfExistSameTable string
    deal of exist same table.
    InitType string
    init type.
    OpTypes List<string>
    operation types.
    AddAdditionalColumn bool
    add additional column.
    ConflictHandleOptions []GetDtsSyncJobsListOptionConflictHandleOption
    conflict handle option.
    ConflictHandleType string
    conflict handle type.
    DdlOptions []GetDtsSyncJobsListOptionDdlOption
    ddl options.
    DealOfExistSameTable string
    deal of exist same table.
    InitType string
    init type.
    OpTypes []string
    operation types.
    addAdditionalColumn Boolean
    add additional column.
    conflictHandleOptions List<GetDtsSyncJobsListOptionConflictHandleOption>
    conflict handle option.
    conflictHandleType String
    conflict handle type.
    ddlOptions List<GetDtsSyncJobsListOptionDdlOption>
    ddl options.
    dealOfExistSameTable String
    deal of exist same table.
    initType String
    init type.
    opTypes List<String>
    operation types.
    addAdditionalColumn boolean
    add additional column.
    conflictHandleOptions GetDtsSyncJobsListOptionConflictHandleOption[]
    conflict handle option.
    conflictHandleType string
    conflict handle type.
    ddlOptions GetDtsSyncJobsListOptionDdlOption[]
    ddl options.
    dealOfExistSameTable string
    deal of exist same table.
    initType string
    init type.
    opTypes string[]
    operation types.
    add_additional_column bool
    add additional column.
    conflict_handle_options Sequence[GetDtsSyncJobsListOptionConflictHandleOption]
    conflict handle option.
    conflict_handle_type str
    conflict handle type.
    ddl_options Sequence[GetDtsSyncJobsListOptionDdlOption]
    ddl options.
    deal_of_exist_same_table str
    deal of exist same table.
    init_type str
    init type.
    op_types Sequence[str]
    operation types.
    addAdditionalColumn Boolean
    add additional column.
    conflictHandleOptions List<Property Map>
    conflict handle option.
    conflictHandleType String
    conflict handle type.
    ddlOptions List<Property Map>
    ddl options.
    dealOfExistSameTable String
    deal of exist same table.
    initType String
    init type.
    opTypes List<String>
    operation types.

    GetDtsSyncJobsListOptionConflictHandleOption

    ConditionColumn string
    condition column.
    ConditionOperator string
    condition override operator.
    ConditionOrderInSrcAndDst string
    condition order in source and destination.
    ConditionColumn string
    condition column.
    ConditionOperator string
    condition override operator.
    ConditionOrderInSrcAndDst string
    condition order in source and destination.
    conditionColumn String
    condition column.
    conditionOperator String
    condition override operator.
    conditionOrderInSrcAndDst String
    condition order in source and destination.
    conditionColumn string
    condition column.
    conditionOperator string
    condition override operator.
    conditionOrderInSrcAndDst string
    condition order in source and destination.
    condition_column str
    condition column.
    condition_operator str
    condition override operator.
    condition_order_in_src_and_dst str
    condition order in source and destination.
    conditionColumn String
    condition column.
    conditionOperator String
    condition override operator.
    conditionOrderInSrcAndDst String
    condition order in source and destination.

    GetDtsSyncJobsListOptionDdlOption

    DdlObject string
    ddl object.
    DdlValues List<string>
    ddl value.
    DdlObject string
    ddl object.
    DdlValues []string
    ddl value.
    ddlObject String
    ddl object.
    ddlValues List<String>
    ddl value.
    ddlObject string
    ddl object.
    ddlValues string[]
    ddl value.
    ddl_object str
    ddl object.
    ddl_values Sequence[str]
    ddl value.
    ddlObject String
    ddl object.
    ddlValues List<String>
    ddl value.

    GetDtsSyncJobsListSrcInfo

    Account string
    account.
    AccountMode string
    account mode.
    AccountRole string
    account role.
    CcnId string
    ccn id.
    CvmInstanceId string
    cvm instance id.
    DbKernel string
    database kernel.
    DbName string
    database name.
    EngineVersion string
    engine version.
    InstanceId string
    instance id.
    Ip string
    ip.
    Password string
    password.
    Port double
    port.
    Region string
    region.
    SubnetId string
    subnet id.
    Supplier string
    supplier.
    TmpSecretId string
    temporary secret id.
    TmpSecretKey string
    temporary secret key.
    TmpToken string
    temporary token.
    UniqDcgId string
    dedicated gateway id.
    UniqVpnGwId string
    vpn gateway id.
    User string
    user.
    VpcId string
    vpc id.
    Account string
    account.
    AccountMode string
    account mode.
    AccountRole string
    account role.
    CcnId string
    ccn id.
    CvmInstanceId string
    cvm instance id.
    DbKernel string
    database kernel.
    DbName string
    database name.
    EngineVersion string
    engine version.
    InstanceId string
    instance id.
    Ip string
    ip.
    Password string
    password.
    Port float64
    port.
    Region string
    region.
    SubnetId string
    subnet id.
    Supplier string
    supplier.
    TmpSecretId string
    temporary secret id.
    TmpSecretKey string
    temporary secret key.
    TmpToken string
    temporary token.
    UniqDcgId string
    dedicated gateway id.
    UniqVpnGwId string
    vpn gateway id.
    User string
    user.
    VpcId string
    vpc id.
    account String
    account.
    accountMode String
    account mode.
    accountRole String
    account role.
    ccnId String
    ccn id.
    cvmInstanceId String
    cvm instance id.
    dbKernel String
    database kernel.
    dbName String
    database name.
    engineVersion String
    engine version.
    instanceId String
    instance id.
    ip String
    ip.
    password String
    password.
    port Double
    port.
    region String
    region.
    subnetId String
    subnet id.
    supplier String
    supplier.
    tmpSecretId String
    temporary secret id.
    tmpSecretKey String
    temporary secret key.
    tmpToken String
    temporary token.
    uniqDcgId String
    dedicated gateway id.
    uniqVpnGwId String
    vpn gateway id.
    user String
    user.
    vpcId String
    vpc id.
    account string
    account.
    accountMode string
    account mode.
    accountRole string
    account role.
    ccnId string
    ccn id.
    cvmInstanceId string
    cvm instance id.
    dbKernel string
    database kernel.
    dbName string
    database name.
    engineVersion string
    engine version.
    instanceId string
    instance id.
    ip string
    ip.
    password string
    password.
    port number
    port.
    region string
    region.
    subnetId string
    subnet id.
    supplier string
    supplier.
    tmpSecretId string
    temporary secret id.
    tmpSecretKey string
    temporary secret key.
    tmpToken string
    temporary token.
    uniqDcgId string
    dedicated gateway id.
    uniqVpnGwId string
    vpn gateway id.
    user string
    user.
    vpcId string
    vpc id.
    account str
    account.
    account_mode str
    account mode.
    account_role str
    account role.
    ccn_id str
    ccn id.
    cvm_instance_id str
    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_id str
    temporary secret id.
    tmp_secret_key str
    temporary secret key.
    tmp_token str
    temporary token.
    uniq_dcg_id str
    dedicated gateway id.
    uniq_vpn_gw_id str
    vpn gateway id.
    user str
    user.
    vpc_id str
    vpc id.
    account String
    account.
    accountMode String
    account mode.
    accountRole String
    account role.
    ccnId String
    ccn id.
    cvmInstanceId String
    cvm instance id.
    dbKernel String
    database kernel.
    dbName String
    database name.
    engineVersion String
    engine version.
    instanceId String
    instance id.
    ip String
    ip.
    password String
    password.
    port Number
    port.
    region String
    region.
    subnetId String
    subnet id.
    supplier String
    supplier.
    tmpSecretId String
    temporary secret id.
    tmpSecretKey String
    temporary secret key.
    tmpToken String
    temporary token.
    uniqDcgId String
    dedicated gateway id.
    uniqVpnGwId String
    vpn gateway id.
    user String
    user.
    vpcId String
    vpc id.

    GetDtsSyncJobsListTag

    TagKey string
    tag key.
    TagValue string
    tag value.
    TagKey string
    tag key.
    TagValue string
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.
    tagKey string
    tag key.
    tagValue string
    tag value.
    tag_key str
    tag key.
    tag_value str
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.

    GetDtsSyncJobsTagFilter

    TagKey string
    tag key.
    TagValue string
    tag value.
    TagKey string
    tag key.
    TagValue string
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.
    tagKey string
    tag key.
    tagValue string
    tag value.
    tag_key str
    tag key.
    tag_value str
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack