![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.rds20140815.models.ActivateMigrationTargetInstanceResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class ActivateMigrationTargetInstanceResponseBody extends TeaModel {
/**
* The name of the destination instance.
*
* example:
* pgm-bp102g323jd4****
*/
@NameInMap("DBInstanceName")
public String DBInstanceName;
/**
* The ID of the request.
*
* example:
* 76364A52-E0AB-5CC8-9818-CF1DC482C092
*/
@NameInMap("RequestId")
public String requestId;
/**
* The private IP address that is used to connect to the self-managed PostgreSQL instance.
*
* example:
* 172.16.XX.XX
*/
@NameInMap("SourceIpAddress")
public String sourceIpAddress;
/**
* The port number that is used to connect to the self-managed PostgreSQL instance.
*
* example:
* 5432
*/
@NameInMap("SourcePort")
public Long sourcePort;
/**
* The ID of the identification task.
*
* example:
* 440913675
*/
@NameInMap("TaskId")
public Long taskId;
public static ActivateMigrationTargetInstanceResponseBody build(java.util.Map map) throws Exception {
ActivateMigrationTargetInstanceResponseBody self = new ActivateMigrationTargetInstanceResponseBody();
return TeaModel.build(map, self);
}
public ActivateMigrationTargetInstanceResponseBody setDBInstanceName(String DBInstanceName) {
this.DBInstanceName = DBInstanceName;
return this;
}
public String getDBInstanceName() {
return this.DBInstanceName;
}
public ActivateMigrationTargetInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ActivateMigrationTargetInstanceResponseBody setSourceIpAddress(String sourceIpAddress) {
this.sourceIpAddress = sourceIpAddress;
return this;
}
public String getSourceIpAddress() {
return this.sourceIpAddress;
}
public ActivateMigrationTargetInstanceResponseBody setSourcePort(Long sourcePort) {
this.sourcePort = sourcePort;
return this;
}
public Long getSourcePort() {
return this.sourcePort;
}
public ActivateMigrationTargetInstanceResponseBody setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy