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

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

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