All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sas20181203.models.DescribeSasPmAgentListRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show 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

*/ @NameInMap("Lang") public String lang; /** *

The UUID of the server. Separate multiple UUIDs with commas (,).

*/ @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