All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.rds20140815.models.CreateCloudMigrationPrecheckTaskResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;

import com.aliyun.tea.*;

public class CreateCloudMigrationPrecheckTaskResponseBody extends TeaModel {
    /**
     * 

The name of the instance.

* * example: *

pgm-bp102g323jd4****

*/ @NameInMap("DBInstanceName") public String DBInstanceName; /** *

The ID of the request.

* * example: *

60F9A12A-16B8-4728-B099-4CA38D32C31C

*/ @NameInMap("RequestId") public String requestId; /** *

The ID of the task.

* * example: *

439946016

*/ @NameInMap("TaskId") public Long taskId; /** *

The name of the task.

* * example: *

slf7w7wj3g

*/ @NameInMap("TaskName") public String taskName; public static CreateCloudMigrationPrecheckTaskResponseBody build(java.util.Map map) throws Exception { CreateCloudMigrationPrecheckTaskResponseBody self = new CreateCloudMigrationPrecheckTaskResponseBody(); return TeaModel.build(map, self); } public CreateCloudMigrationPrecheckTaskResponseBody setDBInstanceName(String DBInstanceName) { this.DBInstanceName = DBInstanceName; return this; } public String getDBInstanceName() { return this.DBInstanceName; } public CreateCloudMigrationPrecheckTaskResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public CreateCloudMigrationPrecheckTaskResponseBody setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } public CreateCloudMigrationPrecheckTaskResponseBody setTaskName(String taskName) { this.taskName = taskName; return this; } public String getTaskName() { return this.taskName; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy