
com.tencentcloudapi.vpc.v20170312.models.ModifyNetworkInterfaceAttributeRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.vpc.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ModifyNetworkInterfaceAttributeRequest extends AbstractModel{
/**
* 弹性网卡实例ID,例如:eni-pxir56ns。
*/
@SerializedName("NetworkInterfaceId")
@Expose
private String NetworkInterfaceId;
/**
* 弹性网卡名称,最大长度不能超过60个字节。
*/
@SerializedName("NetworkInterfaceName")
@Expose
private String NetworkInterfaceName;
/**
* 弹性网卡描述,可任意命名,但不得超过60个字符。
*/
@SerializedName("NetworkInterfaceDescription")
@Expose
private String NetworkInterfaceDescription;
/**
* 指定绑定的安全组,例如:['sg-1dd51d']。
*/
@SerializedName("SecurityGroupIds")
@Expose
private String [] SecurityGroupIds;
/**
* Get 弹性网卡实例ID,例如:eni-pxir56ns。
* @return NetworkInterfaceId 弹性网卡实例ID,例如:eni-pxir56ns。
*/
public String getNetworkInterfaceId() {
return this.NetworkInterfaceId;
}
/**
* Set 弹性网卡实例ID,例如:eni-pxir56ns。
* @param NetworkInterfaceId 弹性网卡实例ID,例如:eni-pxir56ns。
*/
public void setNetworkInterfaceId(String NetworkInterfaceId) {
this.NetworkInterfaceId = NetworkInterfaceId;
}
/**
* Get 弹性网卡名称,最大长度不能超过60个字节。
* @return NetworkInterfaceName 弹性网卡名称,最大长度不能超过60个字节。
*/
public String getNetworkInterfaceName() {
return this.NetworkInterfaceName;
}
/**
* Set 弹性网卡名称,最大长度不能超过60个字节。
* @param NetworkInterfaceName 弹性网卡名称,最大长度不能超过60个字节。
*/
public void setNetworkInterfaceName(String NetworkInterfaceName) {
this.NetworkInterfaceName = NetworkInterfaceName;
}
/**
* Get 弹性网卡描述,可任意命名,但不得超过60个字符。
* @return NetworkInterfaceDescription 弹性网卡描述,可任意命名,但不得超过60个字符。
*/
public String getNetworkInterfaceDescription() {
return this.NetworkInterfaceDescription;
}
/**
* Set 弹性网卡描述,可任意命名,但不得超过60个字符。
* @param NetworkInterfaceDescription 弹性网卡描述,可任意命名,但不得超过60个字符。
*/
public void setNetworkInterfaceDescription(String NetworkInterfaceDescription) {
this.NetworkInterfaceDescription = NetworkInterfaceDescription;
}
/**
* Get 指定绑定的安全组,例如:['sg-1dd51d']。
* @return SecurityGroupIds 指定绑定的安全组,例如:['sg-1dd51d']。
*/
public String [] getSecurityGroupIds() {
return this.SecurityGroupIds;
}
/**
* Set 指定绑定的安全组,例如:['sg-1dd51d']。
* @param SecurityGroupIds 指定绑定的安全组,例如:['sg-1dd51d']。
*/
public void setSecurityGroupIds(String [] SecurityGroupIds) {
this.SecurityGroupIds = SecurityGroupIds;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "NetworkInterfaceId", this.NetworkInterfaceId);
this.setParamSimple(map, prefix + "NetworkInterfaceName", this.NetworkInterfaceName);
this.setParamSimple(map, prefix + "NetworkInterfaceDescription", this.NetworkInterfaceDescription);
this.setParamArraySimple(map, prefix + "SecurityGroupIds.", this.SecurityGroupIds);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy