com.tencentcloudapi.mariadb.v20170312.models.CreateAccountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-mariadb Show documentation
Show all versions of tencentcloud-sdk-java-mariadb Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.mariadb.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateAccountRequest extends AbstractModel{
/**
* 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* 登录用户名,由字母、数字、下划线和连字符组成,长度为1~32位。
*/
@SerializedName("UserName")
@Expose
private String UserName;
/**
* 可以登录的主机,与mysql 账号的 host 格式一致,可以支持通配符,例如 %,10.%,10.20.%。
*/
@SerializedName("Host")
@Expose
private String Host;
/**
* 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
*/
@SerializedName("Password")
@Expose
private String Password;
/**
* 是否创建为只读账号,0:否, 1:该账号的sql请求优先选择备机执行,备机不可用时选择主机执行,2:优先选择备机执行,备机不可用时操作失败。
*/
@SerializedName("ReadOnly")
@Expose
private Long ReadOnly;
/**
* 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
*/
@SerializedName("Description")
@Expose
private String Description;
/**
* 根据传入时间判断备机不可用
*/
@SerializedName("DelayThresh")
@Expose
private Long DelayThresh;
/**
* Get 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
* @return InstanceId 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
* @param InstanceId 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get 登录用户名,由字母、数字、下划线和连字符组成,长度为1~32位。
* @return UserName 登录用户名,由字母、数字、下划线和连字符组成,长度为1~32位。
*/
public String getUserName() {
return this.UserName;
}
/**
* Set 登录用户名,由字母、数字、下划线和连字符组成,长度为1~32位。
* @param UserName 登录用户名,由字母、数字、下划线和连字符组成,长度为1~32位。
*/
public void setUserName(String UserName) {
this.UserName = UserName;
}
/**
* Get 可以登录的主机,与mysql 账号的 host 格式一致,可以支持通配符,例如 %,10.%,10.20.%。
* @return Host 可以登录的主机,与mysql 账号的 host 格式一致,可以支持通配符,例如 %,10.%,10.20.%。
*/
public String getHost() {
return this.Host;
}
/**
* Set 可以登录的主机,与mysql 账号的 host 格式一致,可以支持通配符,例如 %,10.%,10.20.%。
* @param Host 可以登录的主机,与mysql 账号的 host 格式一致,可以支持通配符,例如 %,10.%,10.20.%。
*/
public void setHost(String Host) {
this.Host = Host;
}
/**
* Get 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
* @return Password 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
*/
public String getPassword() {
return this.Password;
}
/**
* Set 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
* @param Password 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
*/
public void setPassword(String Password) {
this.Password = Password;
}
/**
* Get 是否创建为只读账号,0:否, 1:该账号的sql请求优先选择备机执行,备机不可用时选择主机执行,2:优先选择备机执行,备机不可用时操作失败。
* @return ReadOnly 是否创建为只读账号,0:否, 1:该账号的sql请求优先选择备机执行,备机不可用时选择主机执行,2:优先选择备机执行,备机不可用时操作失败。
*/
public Long getReadOnly() {
return this.ReadOnly;
}
/**
* Set 是否创建为只读账号,0:否, 1:该账号的sql请求优先选择备机执行,备机不可用时选择主机执行,2:优先选择备机执行,备机不可用时操作失败。
* @param ReadOnly 是否创建为只读账号,0:否, 1:该账号的sql请求优先选择备机执行,备机不可用时选择主机执行,2:优先选择备机执行,备机不可用时操作失败。
*/
public void setReadOnly(Long ReadOnly) {
this.ReadOnly = ReadOnly;
}
/**
* Get 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
* @return Description 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
*/
public String getDescription() {
return this.Description;
}
/**
* Set 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
* @param Description 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
*/
public void setDescription(String Description) {
this.Description = Description;
}
/**
* Get 根据传入时间判断备机不可用
* @return DelayThresh 根据传入时间判断备机不可用
*/
public Long getDelayThresh() {
return this.DelayThresh;
}
/**
* Set 根据传入时间判断备机不可用
* @param DelayThresh 根据传入时间判断备机不可用
*/
public void setDelayThresh(Long DelayThresh) {
this.DelayThresh = DelayThresh;
}
public CreateAccountRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public CreateAccountRequest(CreateAccountRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.UserName != null) {
this.UserName = new String(source.UserName);
}
if (source.Host != null) {
this.Host = new String(source.Host);
}
if (source.Password != null) {
this.Password = new String(source.Password);
}
if (source.ReadOnly != null) {
this.ReadOnly = new Long(source.ReadOnly);
}
if (source.Description != null) {
this.Description = new String(source.Description);
}
if (source.DelayThresh != null) {
this.DelayThresh = new Long(source.DelayThresh);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamSimple(map, prefix + "UserName", this.UserName);
this.setParamSimple(map, prefix + "Host", this.Host);
this.setParamSimple(map, prefix + "Password", this.Password);
this.setParamSimple(map, prefix + "ReadOnly", this.ReadOnly);
this.setParamSimple(map, prefix + "Description", this.Description);
this.setParamSimple(map, prefix + "DelayThresh", this.DelayThresh);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy