com.aliyun.sas20181203.models.DescribeSasPmAgentListRequest 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 DescribeSasPmAgentListRequest extends TeaModel {
/**
* The language of the content within the request and response. Default value: zh. Valid values:
*
* - zh: Chinese
* - en: English
*
*
* example:
* en
*/
@NameInMap("Lang")
public String lang;
/**
* The UUID of the server. Separate multiple UUIDs with commas (,).
* This parameter is required.
*
* example:
* inet-cb7ae5ee-b2bc-4581-b616-62495f5d****,inet-37cf0e4f-55cc-4b84-8073-b348b4b4****
*/
@NameInMap("Uuids")
public String uuids;
public static DescribeSasPmAgentListRequest build(java.util.Map map) throws Exception {
DescribeSasPmAgentListRequest self = new DescribeSasPmAgentListRequest();
return TeaModel.build(map, self);
}
public DescribeSasPmAgentListRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
public DescribeSasPmAgentListRequest setUuids(String uuids) {
this.uuids = uuids;
return this;
}
public String getUuids() {
return this.uuids;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy