com.aliyun.ens20171110.models.ModifyHaVipAttributeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// 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