com.aliyun.sdk.service.cloudapi20160714.models.ValidateVpcConnectivityResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ValidateVpcConnectivityResponseBody} extends {@link TeaModel}
*
* ValidateVpcConnectivityResponseBody
*/
public class ValidateVpcConnectivityResponseBody extends TeaModel {
@NameInMap("Connected")
private Boolean connected;
@NameInMap("IpType")
private String ipType;
@NameInMap("RequestId")
private String requestId;
private ValidateVpcConnectivityResponseBody(Builder builder) {
this.connected = builder.connected;
this.ipType = builder.ipType;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ValidateVpcConnectivityResponseBody create() {
return builder().build();
}
/**
* @return connected
*/
public Boolean getConnected() {
return this.connected;
}
/**
* @return ipType
*/
public String getIpType() {
return this.ipType;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Boolean connected;
private String ipType;
private String requestId;
/**
* Connected.
*/
public Builder connected(Boolean connected) {
this.connected = connected;
return this;
}
/**
* IpType.
*/
public Builder ipType(String ipType) {
this.ipType = ipType;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ValidateVpcConnectivityResponseBody build() {
return new ValidateVpcConnectivityResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy