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

com.aliyun.ens20171110.models.ModifyHaVipAttributeRequest Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class ModifyHaVipAttributeRequest extends TeaModel {
    /**
     * 

The ID of the HAVIP that you want to modify.

*

This parameter is required.

* * example: *

havip-52y28****

*/ @NameInMap("HaVipId") public String haVipId; /** *

The name of the HAVIP. The name must be 1 to 128 characters in length and cannot start with http:// or https://.

* * example: *

test

*/ @NameInMap("Name") public String name; public static ModifyHaVipAttributeRequest build(java.util.Map map) throws Exception { ModifyHaVipAttributeRequest self = new ModifyHaVipAttributeRequest(); return TeaModel.build(map, self); } public ModifyHaVipAttributeRequest setHaVipId(String haVipId) { this.haVipId = haVipId; return this; } public String getHaVipId() { return this.haVipId; } public ModifyHaVipAttributeRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy