com.aliyun.sas20181203.models.ResetHoneypotRequest 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 ResetHoneypotRequest extends TeaModel {
/**
* The ID of the honeypot.
*
* You can call the ListHoneypot operation to query the IDs of honeypots.
*
* This parameter is required.
*
* example:
* 945607c2ae2a1a737c04599d6608065688bfc6048d9b9d306ce8dc8191c*****
*/
@NameInMap("HoneypotId")
public String honeypotId;
/**
* The language of the content within the request and response. Default value: zh. Valid values:
*
* - zh: Chinese
* - en: English
*
*
* example:
* zh
*/
@NameInMap("Lang")
public String lang;
public static ResetHoneypotRequest build(java.util.Map map) throws Exception {
ResetHoneypotRequest self = new ResetHoneypotRequest();
return TeaModel.build(map, self);
}
public ResetHoneypotRequest setHoneypotId(String honeypotId) {
this.honeypotId = honeypotId;
return this;
}
public String getHoneypotId() {
return this.honeypotId;
}
public ResetHoneypotRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy