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

com.aliyun.polardb20170801.models.UpgradeDBClusterVersionRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpgradeDBClusterVersionRequest extends TeaModel {
    /**
     * 

The ID of cluster.

*

This parameter is required.

* * example: *

pc-****************

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

Specifies whether to immediately run the kernel upgrade task. Valid values:

*
    *
  • false (default)
  • *
  • true
  • *
*
*

This parameter is not required when you call the operation.

*
* * example: *

false

*/ @NameInMap("FromTimeService") public Boolean fromTimeService; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; /** *

The latest start time to run the task that updates the kernel version of the cluster. Specify the time in the YYYY-MM-DDThh:mm:ssZ format. The time must be in UTC.

*
*
    *
  • The value of this parameter must be at least 30 minutes later than the value of PlannedStartTime.
  • *
  • If you specify PlannedStartTime but do not specify PlannedEndTime, the latest start time of the task is PlannedEndTime + 30 minutes. For example, if you set PlannedStartTime to 2021-01-14T09:00:00Z and do not specify PlannedEndTime, the latest start time of the task is set to 2021-01-14T09:30:00Z.
  • *
*
* * example: *

2021-01-14T09:30:00Z

*/ @NameInMap("PlannedEndTime") public String plannedEndTime; /** *

The earliest start time to run the task that updates the kernel version of the cluster. Specify the time in the YYYY-MM-DDThh:mm:ssZ format. The time must be in UTC.

*
*
    *
  • The earliest start time of the task can be a point in time within the next 24 hours. For example, if the current time is 2021-01-14T09:00:00Z, you can specify a point in time between 2021-01-14T09:00:00Z and 2021-01-15T09:00:00Z.
  • *
  • If you do not specify this parameter, the kernel update task runs immediately after you submit the request.
  • *
*
* * example: *

2021-01-14T09:00:00Z

*/ @NameInMap("PlannedStartTime") public String plannedStartTime; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; /** *

The code of the db version to which you want to upgrade the cluster. You can call the DescribeDBClusterVersion operation to query the version code.

* * example: *

20230707

*/ @NameInMap("TargetDBRevisionVersionCode") public String targetDBRevisionVersionCode; /** *

The code of the proxy version to which you want to upgrade the cluster. You can call the DescribeDBClusterVersion operation to query the version code.

* * example: *

20240702

*/ @NameInMap("TargetProxyRevisionVersionCode") public String targetProxyRevisionVersionCode; /** *

The upgrade tag. The value is fixed as INNOVATE.

*
*
    *
  • This parameter is applicable only when you upgrade PolarDB for MySQL 8.0.1 to PolarDB for MySQL 8.0.2.
  • *
  • If you specify this parameter, you must set UpgradePolicy to COLD.
  • *
*
* * example: *

INNOVATE

*/ @NameInMap("UpgradeLabel") public String upgradeLabel; /** *

The engine version upgrade policy. Valid values:

*
    *
  • HOT: hot upgrade.
  • *
  • COLD: cold upgrade. Only PolarDB for MySQL 8.0 Cluster Edition supports this upgrade method.
  • *
* * example: *

HOT

*/ @NameInMap("UpgradePolicy") public String upgradePolicy; /** *

The update type. Valid values:

*
    *
  • PROXY: specifies to upgrade PloarProxy.
  • *
  • DB: specifies to upgrade the kernel version.
  • *
  • ALL: specifies to upgrade both PloarProxy and kernel version.
  • *
* * example: *

PROXY

*/ @NameInMap("UpgradeType") public String upgradeType; public static UpgradeDBClusterVersionRequest build(java.util.Map map) throws Exception { UpgradeDBClusterVersionRequest self = new UpgradeDBClusterVersionRequest(); return TeaModel.build(map, self); } public UpgradeDBClusterVersionRequest setDBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } public String getDBClusterId() { return this.DBClusterId; } public UpgradeDBClusterVersionRequest setFromTimeService(Boolean fromTimeService) { this.fromTimeService = fromTimeService; return this; } public Boolean getFromTimeService() { return this.fromTimeService; } public UpgradeDBClusterVersionRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public UpgradeDBClusterVersionRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public UpgradeDBClusterVersionRequest setPlannedEndTime(String plannedEndTime) { this.plannedEndTime = plannedEndTime; return this; } public String getPlannedEndTime() { return this.plannedEndTime; } public UpgradeDBClusterVersionRequest setPlannedStartTime(String plannedStartTime) { this.plannedStartTime = plannedStartTime; return this; } public String getPlannedStartTime() { return this.plannedStartTime; } public UpgradeDBClusterVersionRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public UpgradeDBClusterVersionRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } public UpgradeDBClusterVersionRequest setTargetDBRevisionVersionCode(String targetDBRevisionVersionCode) { this.targetDBRevisionVersionCode = targetDBRevisionVersionCode; return this; } public String getTargetDBRevisionVersionCode() { return this.targetDBRevisionVersionCode; } public UpgradeDBClusterVersionRequest setTargetProxyRevisionVersionCode(String targetProxyRevisionVersionCode) { this.targetProxyRevisionVersionCode = targetProxyRevisionVersionCode; return this; } public String getTargetProxyRevisionVersionCode() { return this.targetProxyRevisionVersionCode; } public UpgradeDBClusterVersionRequest setUpgradeLabel(String upgradeLabel) { this.upgradeLabel = upgradeLabel; return this; } public String getUpgradeLabel() { return this.upgradeLabel; } public UpgradeDBClusterVersionRequest setUpgradePolicy(String upgradePolicy) { this.upgradePolicy = upgradePolicy; return this; } public String getUpgradePolicy() { return this.upgradePolicy; } public UpgradeDBClusterVersionRequest setUpgradeType(String upgradeType) { this.upgradeType = upgradeType; return this; } public String getUpgradeType() { return this.upgradeType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy