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

com.aliyun.sas20181203.models.ModifyVpcHoneyPotRequest 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 ModifyVpcHoneyPotRequest extends TeaModel {
    /**
     * 

Specifies whether to enable or disable the honeypot. Valid values:

*
*

* **disable**

*

* **enable**

*/ @NameInMap("HoneyPotAction") public String honeyPotAction; /** *

The ID of the virtual private cloud (VPC) on which the honeypot is deployed.

*
*

> You can call the [DescribeVpcHoneyPotList](~~DescribeVpcHoneyPotList~~) operation to query the IDs of VPCs.

*/ @NameInMap("VpcId") public String vpcId; public static ModifyVpcHoneyPotRequest build(java.util.Map map) throws Exception { ModifyVpcHoneyPotRequest self = new ModifyVpcHoneyPotRequest(); return TeaModel.build(map, self); } public ModifyVpcHoneyPotRequest setHoneyPotAction(String honeyPotAction) { this.honeyPotAction = honeyPotAction; return this; } public String getHoneyPotAction() { return this.honeyPotAction; } public ModifyVpcHoneyPotRequest setVpcId(String vpcId) { this.vpcId = vpcId; return this; } public String getVpcId() { return this.vpcId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy