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

com.aliyuncs.ecs.model.v20140526.DescribeNetworkInterfacesResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 5.11.15
Show newest version
/*
 * 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.aliyuncs.ecs.model.v20140526;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ecs.transform.v20140526.DescribeNetworkInterfacesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeNetworkInterfacesResponse extends AcsResponse {

	private String nextToken;

	private Integer pageSize;

	private Integer pageNumber;

	private String requestId;

	private Integer totalCount;

	private List networkInterfaceSets;

	public String getNextToken() {
		return this.nextToken;
	}

	public void setNextToken(String nextToken) {
		this.nextToken = nextToken;
	}

	public Integer getPageSize() {
		return this.pageSize;
	}

	public void setPageSize(Integer pageSize) {
		this.pageSize = pageSize;
	}

	public Integer getPageNumber() {
		return this.pageNumber;
	}

	public void setPageNumber(Integer pageNumber) {
		this.pageNumber = pageNumber;
	}

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public Integer getTotalCount() {
		return this.totalCount;
	}

	public void setTotalCount(Integer totalCount) {
		this.totalCount = totalCount;
	}

	public List getNetworkInterfaceSets() {
		return this.networkInterfaceSets;
	}

	public void setNetworkInterfaceSets(List networkInterfaceSets) {
		this.networkInterfaceSets = networkInterfaceSets;
	}

	public static class NetworkInterfaceSet {

		private String creationTime;

		private String vpcId;

		private String type;

		private String status;

		private String networkInterfaceTrafficMode;

		private String networkInterfaceName;

		private String macAddress;

		private Integer queuePairNumber;

		private String networkInterfaceId;

		private Long serviceID;

		private String instanceId;

		private String ownerId;

		private Boolean serviceManaged;

		private String vSwitchId;

		private String description;

		private String resourceGroupId;

		private String zoneId;

		private String privateIpAddress;

		private Integer queueNumber;

		private Boolean deleteOnRelease;

		private List privateIpSets;

		private List ipv6Sets;

		private List ipv4PrefixSets;

		private List ipv6PrefixSets;

		private List tags;

		private List securityGroupIds;

		private AssociatedPublicIp associatedPublicIp;

		private Attachment attachment;

		public String getCreationTime() {
			return this.creationTime;
		}

		public void setCreationTime(String creationTime) {
			this.creationTime = creationTime;
		}

		public String getVpcId() {
			return this.vpcId;
		}

		public void setVpcId(String vpcId) {
			this.vpcId = vpcId;
		}

		public String getType() {
			return this.type;
		}

		public void setType(String type) {
			this.type = type;
		}

		public String getStatus() {
			return this.status;
		}

		public void setStatus(String status) {
			this.status = status;
		}

		public String getNetworkInterfaceTrafficMode() {
			return this.networkInterfaceTrafficMode;
		}

		public void setNetworkInterfaceTrafficMode(String networkInterfaceTrafficMode) {
			this.networkInterfaceTrafficMode = networkInterfaceTrafficMode;
		}

		public String getNetworkInterfaceName() {
			return this.networkInterfaceName;
		}

		public void setNetworkInterfaceName(String networkInterfaceName) {
			this.networkInterfaceName = networkInterfaceName;
		}

		public String getMacAddress() {
			return this.macAddress;
		}

		public void setMacAddress(String macAddress) {
			this.macAddress = macAddress;
		}

		public Integer getQueuePairNumber() {
			return this.queuePairNumber;
		}

		public void setQueuePairNumber(Integer queuePairNumber) {
			this.queuePairNumber = queuePairNumber;
		}

		public String getNetworkInterfaceId() {
			return this.networkInterfaceId;
		}

		public void setNetworkInterfaceId(String networkInterfaceId) {
			this.networkInterfaceId = networkInterfaceId;
		}

		public Long getServiceID() {
			return this.serviceID;
		}

		public void setServiceID(Long serviceID) {
			this.serviceID = serviceID;
		}

		public String getInstanceId() {
			return this.instanceId;
		}

		public void setInstanceId(String instanceId) {
			this.instanceId = instanceId;
		}

		public String getOwnerId() {
			return this.ownerId;
		}

		public void setOwnerId(String ownerId) {
			this.ownerId = ownerId;
		}

		public Boolean getServiceManaged() {
			return this.serviceManaged;
		}

		public void setServiceManaged(Boolean serviceManaged) {
			this.serviceManaged = serviceManaged;
		}

		public String getVSwitchId() {
			return this.vSwitchId;
		}

		public void setVSwitchId(String vSwitchId) {
			this.vSwitchId = vSwitchId;
		}

		public String getDescription() {
			return this.description;
		}

		public void setDescription(String description) {
			this.description = description;
		}

		public String getResourceGroupId() {
			return this.resourceGroupId;
		}

		public void setResourceGroupId(String resourceGroupId) {
			this.resourceGroupId = resourceGroupId;
		}

		public String getZoneId() {
			return this.zoneId;
		}

		public void setZoneId(String zoneId) {
			this.zoneId = zoneId;
		}

		public String getPrivateIpAddress() {
			return this.privateIpAddress;
		}

		public void setPrivateIpAddress(String privateIpAddress) {
			this.privateIpAddress = privateIpAddress;
		}

		public Integer getQueueNumber() {
			return this.queueNumber;
		}

		public void setQueueNumber(Integer queueNumber) {
			this.queueNumber = queueNumber;
		}

		public Boolean getDeleteOnRelease() {
			return this.deleteOnRelease;
		}

		public void setDeleteOnRelease(Boolean deleteOnRelease) {
			this.deleteOnRelease = deleteOnRelease;
		}

		public List getPrivateIpSets() {
			return this.privateIpSets;
		}

		public void setPrivateIpSets(List privateIpSets) {
			this.privateIpSets = privateIpSets;
		}

		public List getIpv6Sets() {
			return this.ipv6Sets;
		}

		public void setIpv6Sets(List ipv6Sets) {
			this.ipv6Sets = ipv6Sets;
		}

		public List getIpv4PrefixSets() {
			return this.ipv4PrefixSets;
		}

		public void setIpv4PrefixSets(List ipv4PrefixSets) {
			this.ipv4PrefixSets = ipv4PrefixSets;
		}

		public List getIpv6PrefixSets() {
			return this.ipv6PrefixSets;
		}

		public void setIpv6PrefixSets(List ipv6PrefixSets) {
			this.ipv6PrefixSets = ipv6PrefixSets;
		}

		public List getTags() {
			return this.tags;
		}

		public void setTags(List tags) {
			this.tags = tags;
		}

		public List getSecurityGroupIds() {
			return this.securityGroupIds;
		}

		public void setSecurityGroupIds(List securityGroupIds) {
			this.securityGroupIds = securityGroupIds;
		}

		public AssociatedPublicIp getAssociatedPublicIp() {
			return this.associatedPublicIp;
		}

		public void setAssociatedPublicIp(AssociatedPublicIp associatedPublicIp) {
			this.associatedPublicIp = associatedPublicIp;
		}

		public Attachment getAttachment() {
			return this.attachment;
		}

		public void setAttachment(Attachment attachment) {
			this.attachment = attachment;
		}

		public static class PrivateIpSet {

			private String privateIpAddress;

			private Boolean primary;

			private AssociatedPublicIp1 associatedPublicIp1;

			public String getPrivateIpAddress() {
				return this.privateIpAddress;
			}

			public void setPrivateIpAddress(String privateIpAddress) {
				this.privateIpAddress = privateIpAddress;
			}

			public Boolean getPrimary() {
				return this.primary;
			}

			public void setPrimary(Boolean primary) {
				this.primary = primary;
			}

			public AssociatedPublicIp1 getAssociatedPublicIp1() {
				return this.associatedPublicIp1;
			}

			public void setAssociatedPublicIp1(AssociatedPublicIp1 associatedPublicIp1) {
				this.associatedPublicIp1 = associatedPublicIp1;
			}

			public static class AssociatedPublicIp1 {

				private String publicIpAddress;

				private String allocationId;

				public String getPublicIpAddress() {
					return this.publicIpAddress;
				}

				public void setPublicIpAddress(String publicIpAddress) {
					this.publicIpAddress = publicIpAddress;
				}

				public String getAllocationId() {
					return this.allocationId;
				}

				public void setAllocationId(String allocationId) {
					this.allocationId = allocationId;
				}
			}
		}

		public static class Ipv6Set {

			private String ipv6Address;

			public String getIpv6Address() {
				return this.ipv6Address;
			}

			public void setIpv6Address(String ipv6Address) {
				this.ipv6Address = ipv6Address;
			}
		}

		public static class Ipv4PrefixSet {

			private String ipv4Prefix;

			public String getIpv4Prefix() {
				return this.ipv4Prefix;
			}

			public void setIpv4Prefix(String ipv4Prefix) {
				this.ipv4Prefix = ipv4Prefix;
			}
		}

		public static class Ipv6PrefixSet {

			private String ipv6Prefix;

			public String getIpv6Prefix() {
				return this.ipv6Prefix;
			}

			public void setIpv6Prefix(String ipv6Prefix) {
				this.ipv6Prefix = ipv6Prefix;
			}
		}

		public static class Tag {

			private String tagValue;

			private String tagKey;

			public String getTagValue() {
				return this.tagValue;
			}

			public void setTagValue(String tagValue) {
				this.tagValue = tagValue;
			}

			public String getTagKey() {
				return this.tagKey;
			}

			public void setTagKey(String tagKey) {
				this.tagKey = tagKey;
			}
		}

		public static class AssociatedPublicIp {

			private String publicIpAddress;

			private String allocationId;

			public String getPublicIpAddress() {
				return this.publicIpAddress;
			}

			public void setPublicIpAddress(String publicIpAddress) {
				this.publicIpAddress = publicIpAddress;
			}

			public String getAllocationId() {
				return this.allocationId;
			}

			public void setAllocationId(String allocationId) {
				this.allocationId = allocationId;
			}
		}

		public static class Attachment {

			private Integer deviceIndex;

			private String instanceId;

			private String trunkNetworkInterfaceId;

			private Integer networkCardIndex;

			public Integer getDeviceIndex() {
				return this.deviceIndex;
			}

			public void setDeviceIndex(Integer deviceIndex) {
				this.deviceIndex = deviceIndex;
			}

			public String getInstanceId() {
				return this.instanceId;
			}

			public void setInstanceId(String instanceId) {
				this.instanceId = instanceId;
			}

			public String getTrunkNetworkInterfaceId() {
				return this.trunkNetworkInterfaceId;
			}

			public void setTrunkNetworkInterfaceId(String trunkNetworkInterfaceId) {
				this.trunkNetworkInterfaceId = trunkNetworkInterfaceId;
			}

			public Integer getNetworkCardIndex() {
				return this.networkCardIndex;
			}

			public void setNetworkCardIndex(Integer networkCardIndex) {
				this.networkCardIndex = networkCardIndex;
			}
		}
	}

	@Override
	public DescribeNetworkInterfacesResponse getInstance(UnmarshallerContext context) {
		return	DescribeNetworkInterfacesResponseUnmarshaller.unmarshall(this, context);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy