com.aliyun.arms20190808.models.DataBonreeSDKConfigModuleConfigVersionConfigsValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DataBonreeSDKConfigModuleConfigVersionConfigsValue extends TeaModel {
/**
* Indicates whether the custom configuration is used.
*
* example:
* true
*/
@NameInMap("useCustom")
public Boolean useCustom;
/**
* The custom configuration.
*/
@NameInMap("customConfig")
public java.util.Map customConfig;
/**
* The description of the version configuration.
*/
@NameInMap("description")
public String description;
/**
* The time when the version configuration was updated.
*
* example:
* 1721112372055
*/
@NameInMap("updateTime")
public Long updateTime;
public static DataBonreeSDKConfigModuleConfigVersionConfigsValue build(java.util.Map map) throws Exception {
DataBonreeSDKConfigModuleConfigVersionConfigsValue self = new DataBonreeSDKConfigModuleConfigVersionConfigsValue();
return TeaModel.build(map, self);
}
public DataBonreeSDKConfigModuleConfigVersionConfigsValue setUseCustom(Boolean useCustom) {
this.useCustom = useCustom;
return this;
}
public Boolean getUseCustom() {
return this.useCustom;
}
public DataBonreeSDKConfigModuleConfigVersionConfigsValue setCustomConfig(java.util.Map customConfig) {
this.customConfig = customConfig;
return this;
}
public java.util.Map getCustomConfig() {
return this.customConfig;
}
public DataBonreeSDKConfigModuleConfigVersionConfigsValue setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public DataBonreeSDKConfigModuleConfigVersionConfigsValue setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public Long getUpdateTime() {
return this.updateTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy