com.aliyun.sas20181203.models.ModifyWebLockRefreshRequest 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 ModifyWebLockRefreshRequest extends TeaModel {
/**
* The UUID of the server for which you want to refresh the status of the web tamper proofing feature.
*
* You can call the DescribeWebLockBindList operation to query the servers for which the web tamper proofing feature is enabled.
*
*
* example:
* 55c0f41b-3093-47a7-8eae-02d3a584****
*/
@NameInMap("Uuid")
public String uuid;
public static ModifyWebLockRefreshRequest build(java.util.Map map) throws Exception {
ModifyWebLockRefreshRequest self = new ModifyWebLockRefreshRequest();
return TeaModel.build(map, self);
}
public ModifyWebLockRefreshRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy