com.aliyun.sas20181203.models.ModifyContainerDefenseRuleSwitchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class ModifyContainerDefenseRuleSwitchRequest extends TeaModel {
/**
* The IDs of the rules.
*/
@NameInMap("RuleIds")
public java.util.List ruleIds;
/**
* The status of the rule. Valid values:
*
* - 1: enabled
* - 0: disabled
*
*
* example:
* 0
*/
@NameInMap("RuleSwitch")
public Integer ruleSwitch;
public static ModifyContainerDefenseRuleSwitchRequest build(java.util.Map map) throws Exception {
ModifyContainerDefenseRuleSwitchRequest self = new ModifyContainerDefenseRuleSwitchRequest();
return TeaModel.build(map, self);
}
public ModifyContainerDefenseRuleSwitchRequest setRuleIds(java.util.List ruleIds) {
this.ruleIds = ruleIds;
return this;
}
public java.util.List getRuleIds() {
return this.ruleIds;
}
public ModifyContainerDefenseRuleSwitchRequest setRuleSwitch(Integer ruleSwitch) {
this.ruleSwitch = ruleSwitch;
return this;
}
public Integer getRuleSwitch() {
return this.ruleSwitch;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy