com.aliyun.arms20190808.models.DataBonreeSDKConfigModuleConfigDefaultConfigValue 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DataBonreeSDKConfigModuleConfigDefaultConfigValue extends TeaModel {
/**
* Indicates whether the configuration is enabled.
*
* example:
* true
*/
@NameInMap("enable")
public Boolean enable;
public static DataBonreeSDKConfigModuleConfigDefaultConfigValue build(java.util.Map map) throws Exception {
DataBonreeSDKConfigModuleConfigDefaultConfigValue self = new DataBonreeSDKConfigModuleConfigDefaultConfigValue();
return TeaModel.build(map, self);
}
public DataBonreeSDKConfigModuleConfigDefaultConfigValue setEnable(Boolean enable) {
this.enable = enable;
return this;
}
public Boolean getEnable() {
return this.enable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy