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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class OperateAgentClientInstallRequest extends TeaModel {
    /**
     * 

The IDs of the servers on which you want to install the Security Center agent. Separate multiple IDs with commas (,).

*
*

> You must specify at least one of the **InstanceIds** and **Uuids** parameters before you can call this operation.

*/ @NameInMap("InstanceIds") public String instanceIds; /** *

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 UUIDs of the servers on which you want to install the Security Center agent. Separate multiple UUIDs with commas (,).

*
*

> You must specify at least one of the **InstanceIds** and **Uuids** parameters before you can call this operation.

*/ @NameInMap("Uuids") public String uuids; public static OperateAgentClientInstallRequest build(java.util.Map map) throws Exception { OperateAgentClientInstallRequest self = new OperateAgentClientInstallRequest(); return TeaModel.build(map, self); } public OperateAgentClientInstallRequest setInstanceIds(String instanceIds) { this.instanceIds = instanceIds; return this; } public String getInstanceIds() { return this.instanceIds; } public OperateAgentClientInstallRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public OperateAgentClientInstallRequest setUuids(String uuids) { this.uuids = uuids; return this; } public String getUuids() { return this.uuids; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy