com.aliyun.ens20171110.models.ModifyNetworkAttributeRequest 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 ModifyNetworkAttributeRequest extends TeaModel {
/**
* The description of the network.
* The description must be 2 to 256 characters in length. It must start with a letter but cannot start with http:// or https://.
*
* example:
* this is my first network
*/
@NameInMap("Description")
public String description;
/**
* The ID of the network.
* This parameter is required.
*
* example:
* n-****
*/
@NameInMap("NetworkId")
public String networkId;
/**
* The name of the network. The name must meet the following requirements:
*
* - The name must be 2 to 128 characters in length
* - It must start with a letter but cannot start with http:// or https://.
* - The name can contain letters, digits, colons (:), underscores (_), and hyphens (-).
*
*
* example:
* abc
*/
@NameInMap("NetworkName")
public String networkName;
public static ModifyNetworkAttributeRequest build(java.util.Map map) throws Exception {
ModifyNetworkAttributeRequest self = new ModifyNetworkAttributeRequest();
return TeaModel.build(map, self);
}
public ModifyNetworkAttributeRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ModifyNetworkAttributeRequest setNetworkId(String networkId) {
this.networkId = networkId;
return this;
}
public String getNetworkId() {
return this.networkId;
}
public ModifyNetworkAttributeRequest setNetworkName(String networkName) {
this.networkName = networkName;
return this;
}
public String getNetworkName() {
return this.networkName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy