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

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

There is a newer version: 6.3.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;

import com.aliyun.tea.*;

public class MigrateDBInstanceRequest extends TeaModel {
    /**
     * 

The ID of the instance.

*

This parameter is required.

* * example: *

rm-uf6wjk5******

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

The dedicated cluster ID. You can call the DescribeDedicatedHostGroups operation to query the dedicated cluster ID.

*

This parameter is required.

* * example: *

dhg-4n******

*/ @NameInMap("DedicatedHostGroupId") public String dedicatedHostGroupId; /** *

The time when you want the system to start the migration. Valid values:

*
    *
  • Immediately: The system immediately starts the migration. This is the default value.
  • *
  • MaintainTime: The system starts the migration during the specified maintenance window.
  • *
  • Specified: The system starts the migration at the specified point in time.
  • *
* * example: *

MaintainTime

*/ @NameInMap("EffectiveTime") public String effectiveTime; @NameInMap("OwnerId") public Long ownerId; /** *

The region ID. You can call the DescribeRegions operation to query the most recent region list.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; /** *

The point in time when you want the system to start the migration. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

*
*

This parameter must be specified when you set EffectiveTime to Specified.

*
* * example: *

2019-10-21T10:00:00Z

*/ @NameInMap("SpecifiedTime") public String specifiedTime; /** *

The ID of the host to which you want to migrate the primary instance. You can call the DescribeDedicatedHosts operation to query the host ID.

* * example: *

i-bp******

*/ @NameInMap("TargetDedicatedHostIdForMaster") public String targetDedicatedHostIdForMaster; /** *

The ID of the host to which you want to migrate the secondary instance. You can call the DescribeDedicatedHosts operation to query the host ID.

* * example: *

i-bp******

*/ @NameInMap("TargetDedicatedHostIdForSlave") public String targetDedicatedHostIdForSlave; /** *

The zone ID of the secondary node.

* * example: *

cn-hangzhou-h

*/ @NameInMap("ZoneIdForFollower") public String zoneIdForFollower; /** *

The zone ID of the logger instance.

* * example: *

cn-hangzhou-i

*/ @NameInMap("ZoneIdForLog") public String zoneIdForLog; public static MigrateDBInstanceRequest build(java.util.Map map) throws Exception { MigrateDBInstanceRequest self = new MigrateDBInstanceRequest(); return TeaModel.build(map, self); } public MigrateDBInstanceRequest setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public MigrateDBInstanceRequest setDedicatedHostGroupId(String dedicatedHostGroupId) { this.dedicatedHostGroupId = dedicatedHostGroupId; return this; } public String getDedicatedHostGroupId() { return this.dedicatedHostGroupId; } public MigrateDBInstanceRequest setEffectiveTime(String effectiveTime) { this.effectiveTime = effectiveTime; return this; } public String getEffectiveTime() { return this.effectiveTime; } public MigrateDBInstanceRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public MigrateDBInstanceRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public MigrateDBInstanceRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public MigrateDBInstanceRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } public MigrateDBInstanceRequest setSpecifiedTime(String specifiedTime) { this.specifiedTime = specifiedTime; return this; } public String getSpecifiedTime() { return this.specifiedTime; } public MigrateDBInstanceRequest setTargetDedicatedHostIdForMaster(String targetDedicatedHostIdForMaster) { this.targetDedicatedHostIdForMaster = targetDedicatedHostIdForMaster; return this; } public String getTargetDedicatedHostIdForMaster() { return this.targetDedicatedHostIdForMaster; } public MigrateDBInstanceRequest setTargetDedicatedHostIdForSlave(String targetDedicatedHostIdForSlave) { this.targetDedicatedHostIdForSlave = targetDedicatedHostIdForSlave; return this; } public String getTargetDedicatedHostIdForSlave() { return this.targetDedicatedHostIdForSlave; } public MigrateDBInstanceRequest setZoneIdForFollower(String zoneIdForFollower) { this.zoneIdForFollower = zoneIdForFollower; return this; } public String getZoneIdForFollower() { return this.zoneIdForFollower; } public MigrateDBInstanceRequest setZoneIdForLog(String zoneIdForLog) { this.zoneIdForLog = zoneIdForLog; return this; } public String getZoneIdForLog() { return this.zoneIdForLog; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy