com.aliyun.sas20181203.models.GetSasContainerWebDefenseRuleCriteriaRequest 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 GetSasContainerWebDefenseRuleCriteriaRequest extends TeaModel {
/**
* The value of the search condition. Fuzzy match is supported.
*
* example:
* 525
*/
@NameInMap("Value")
public String value;
public static GetSasContainerWebDefenseRuleCriteriaRequest build(java.util.Map map) throws Exception {
GetSasContainerWebDefenseRuleCriteriaRequest self = new GetSasContainerWebDefenseRuleCriteriaRequest();
return TeaModel.build(map, self);
}
public GetSasContainerWebDefenseRuleCriteriaRequest setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy