com.ksc.network.vpc.model.InternetGateways.DescribeInternetGatewaysResult Maven / Gradle / Ivy
package com.ksc.network.vpc.model.InternetGateways;
import lombok.ToString;
@ToString
public class DescribeInternetGatewaysResult {
private String RequestId;
/**
*
* Information about one or more InternetGateways.
*
*/
private com.ksc.internal.SdkInternalList InternetGatewaySet;
public String getRequestId() {
return RequestId;
}
public void setRequestId(String requestId) {
RequestId = requestId;
}
public com.ksc.internal.SdkInternalList getInternetGatewaySet() {
return InternetGatewaySet;
}
public void setNetworkInterfaceSet(java.util.Collection internetGatewaySet) {
if (internetGatewaySet == null) {
this.InternetGatewaySet = null;
return;
}
InternetGatewaySet = new com.ksc.internal.SdkInternalList(internetGatewaySet);
}
public void addInternetGateways(InternetGateway... interfaces) {
if (this.InternetGatewaySet == null) {
this.InternetGatewaySet = new com.ksc.internal.SdkInternalList();
}
for (InternetGateway item : interfaces) {
this.InternetGatewaySet.add(item);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy