com.aliyun.sas20181203.models.DeleteAntiBruteForceRuleRequest 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 DeleteAntiBruteForceRuleRequest extends TeaModel {
/**
* The IDs of the defense rules against brute-force attacks to delete.
* This parameter is required.
*/
@NameInMap("Ids")
public java.util.List ids;
public static DeleteAntiBruteForceRuleRequest build(java.util.Map map) throws Exception {
DeleteAntiBruteForceRuleRequest self = new DeleteAntiBruteForceRuleRequest();
return TeaModel.build(map, self);
}
public DeleteAntiBruteForceRuleRequest setIds(java.util.List ids) {
this.ids = ids;
return this;
}
public java.util.List getIds() {
return this.ids;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy