com.tencentcloudapi.ckafka.v20190819.models.ModifyInstanceAttributesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-ckafka Show documentation
Show all versions of tencentcloud-sdk-java-ckafka 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.ckafka.v20190819.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ModifyInstanceAttributesRequest extends AbstractModel{
/**
* 实例id
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
*/
@SerializedName("MsgRetentionTime")
@Expose
private Long MsgRetentionTime;
/**
* 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
*/
@SerializedName("InstanceName")
@Expose
private String InstanceName;
/**
* 实例配置
*/
@SerializedName("Config")
@Expose
private ModifyInstanceAttributesConfig Config;
/**
* 动态消息保留策略配置
*/
@SerializedName("DynamicRetentionConfig")
@Expose
private DynamicRetentionTime DynamicRetentionConfig;
/**
* 修改升配置rebalance时间
*/
@SerializedName("RebalanceTime")
@Expose
private Long RebalanceTime;
/**
* Get 实例id
* @return InstanceId 实例id
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set 实例id
* @param InstanceId 实例id
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
* @return MsgRetentionTime 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
*/
public Long getMsgRetentionTime() {
return this.MsgRetentionTime;
}
/**
* Set 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
* @param MsgRetentionTime 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
*/
public void setMsgRetentionTime(Long MsgRetentionTime) {
this.MsgRetentionTime = MsgRetentionTime;
}
/**
* Get 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
* @return InstanceName 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
*/
public String getInstanceName() {
return this.InstanceName;
}
/**
* Set 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
* @param InstanceName 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
*/
public void setInstanceName(String InstanceName) {
this.InstanceName = InstanceName;
}
/**
* Get 实例配置
* @return Config 实例配置
*/
public ModifyInstanceAttributesConfig getConfig() {
return this.Config;
}
/**
* Set 实例配置
* @param Config 实例配置
*/
public void setConfig(ModifyInstanceAttributesConfig Config) {
this.Config = Config;
}
/**
* Get 动态消息保留策略配置
* @return DynamicRetentionConfig 动态消息保留策略配置
*/
public DynamicRetentionTime getDynamicRetentionConfig() {
return this.DynamicRetentionConfig;
}
/**
* Set 动态消息保留策略配置
* @param DynamicRetentionConfig 动态消息保留策略配置
*/
public void setDynamicRetentionConfig(DynamicRetentionTime DynamicRetentionConfig) {
this.DynamicRetentionConfig = DynamicRetentionConfig;
}
/**
* Get 修改升配置rebalance时间
* @return RebalanceTime 修改升配置rebalance时间
*/
public Long getRebalanceTime() {
return this.RebalanceTime;
}
/**
* Set 修改升配置rebalance时间
* @param RebalanceTime 修改升配置rebalance时间
*/
public void setRebalanceTime(Long RebalanceTime) {
this.RebalanceTime = RebalanceTime;
}
/**
* 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 + "MsgRetentionTime", this.MsgRetentionTime);
this.setParamSimple(map, prefix + "InstanceName", this.InstanceName);
this.setParamObj(map, prefix + "Config.", this.Config);
this.setParamObj(map, prefix + "DynamicRetentionConfig.", this.DynamicRetentionConfig);
this.setParamSimple(map, prefix + "RebalanceTime", this.RebalanceTime);
}
}