com.aliyun.sas20181203.models.DeleteSasContainerWebDefenseRuleRequest 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 DeleteSasContainerWebDefenseRuleRequest extends TeaModel {
/**
* The rule ID.
*
* You can call the ListContainerWebDefenseRule operation to query the rule ID.
*
* This parameter is required.
*
* example:
* 400597
*/
@NameInMap("RuleId")
public Long ruleId;
public static DeleteSasContainerWebDefenseRuleRequest build(java.util.Map map) throws Exception {
DeleteSasContainerWebDefenseRuleRequest self = new DeleteSasContainerWebDefenseRuleRequest();
return TeaModel.build(map, self);
}
public DeleteSasContainerWebDefenseRuleRequest setRuleId(Long ruleId) {
this.ruleId = ruleId;
return this;
}
public Long getRuleId() {
return this.ruleId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy