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

com.aliyun.rds20140815.models.ModifyCollationTimeZoneRequest 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 ModifyCollationTimeZoneRequest extends TeaModel {
    /**
     * 

The character set collation of the instance. By default, the system does not modify the character set collation of the instance. Valid values:

*
    *
  • Chinese_PRC_CI_AS
  • *
  • Chinese_PRC_CS_AS
  • *
  • Chinese_PRC_BIN
  • *
  • Latin1_General_CI_AS
  • *
  • Latin1_General_CS_AS
  • *
  • SQL_Latin1_General_CP1_CI_AS
  • *
  • SQL_Latin1_General_CP1_CS_AS
  • *
  • Japanese_CI_AS
  • *
  • Japanese_CS_AS
  • *
  • Chinese_Taiwan_Stroke_CI_AS
  • *
  • Chinese_Taiwan_Stroke_CS_AS
  • *
*
*
    *
  • The default character set collation of the instance is Chinese_PRC_CI_AS.
  • *
  • You must specify one of the Collation and Timezone parameters.
  • *
*
* * example: *

Latin1_General_CI_AS

*/ @NameInMap("Collation") public String collation; /** *

The instance ID.

*

This parameter is required.

* * example: *

rm-uf6wjk5xxxxxxx

*/ @NameInMap("DBInstanceId") public String DBInstanceId; @NameInMap("OwnerId") public Long ownerId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; /** *

The time zone of the instance. By default, the system does not modify the time zone.

*
*
    *
  • The default time zone of the instance is China Standard Time.
  • *
  • You must specify one of the Collation and Timezone parameters.
  • *
*
* * example: *

China Standard Time

*/ @NameInMap("Timezone") public String timezone; public static ModifyCollationTimeZoneRequest build(java.util.Map map) throws Exception { ModifyCollationTimeZoneRequest self = new ModifyCollationTimeZoneRequest(); return TeaModel.build(map, self); } public ModifyCollationTimeZoneRequest setCollation(String collation) { this.collation = collation; return this; } public String getCollation() { return this.collation; } public ModifyCollationTimeZoneRequest setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public ModifyCollationTimeZoneRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public ModifyCollationTimeZoneRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public ModifyCollationTimeZoneRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } public ModifyCollationTimeZoneRequest setTimezone(String timezone) { this.timezone = timezone; return this; } public String getTimezone() { return this.timezone; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy