com.volcengine.privatelink.model.DescribeVpcGatewayEndpointsResponse Maven / Gradle / Ivy
/*
* privatelink
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.privatelink.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.volcengine.privatelink.model.EndpointForDescribeVpcGatewayEndpointsOutput;
import com.volcengine.privatelink.model.GatewayEndpointForDescribeVpcGatewayEndpointsOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* DescribeVpcGatewayEndpointsResponse
*/
public class DescribeVpcGatewayEndpointsResponse extends com.volcengine.model.AbstractResponse {
@SerializedName("Endpoints")
private List endpoints = null;
@SerializedName("GatewayEndpoints")
private List gatewayEndpoints = null;
@SerializedName("PageNumber")
private Integer pageNumber = null;
@SerializedName("PageSize")
private Integer pageSize = null;
@SerializedName("RequestId")
private String requestId = null;
@SerializedName("TotalCount")
private Integer totalCount = null;
public DescribeVpcGatewayEndpointsResponse endpoints(List endpoints) {
this.endpoints = endpoints;
return this;
}
public DescribeVpcGatewayEndpointsResponse addEndpointsItem(EndpointForDescribeVpcGatewayEndpointsOutput endpointsItem) {
if (this.endpoints == null) {
this.endpoints = new ArrayList();
}
this.endpoints.add(endpointsItem);
return this;
}
/**
* Get endpoints
* @return endpoints
**/
@Valid
@Schema(description = "")
public List getEndpoints() {
return endpoints;
}
public void setEndpoints(List endpoints) {
this.endpoints = endpoints;
}
public DescribeVpcGatewayEndpointsResponse gatewayEndpoints(List gatewayEndpoints) {
this.gatewayEndpoints = gatewayEndpoints;
return this;
}
public DescribeVpcGatewayEndpointsResponse addGatewayEndpointsItem(GatewayEndpointForDescribeVpcGatewayEndpointsOutput gatewayEndpointsItem) {
if (this.gatewayEndpoints == null) {
this.gatewayEndpoints = new ArrayList();
}
this.gatewayEndpoints.add(gatewayEndpointsItem);
return this;
}
/**
* Get gatewayEndpoints
* @return gatewayEndpoints
**/
@Valid
@Schema(description = "")
public List getGatewayEndpoints() {
return gatewayEndpoints;
}
public void setGatewayEndpoints(List gatewayEndpoints) {
this.gatewayEndpoints = gatewayEndpoints;
}
public DescribeVpcGatewayEndpointsResponse pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* Get pageNumber
* @return pageNumber
**/
@Schema(description = "")
public Integer getPageNumber() {
return pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public DescribeVpcGatewayEndpointsResponse pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Get pageSize
* @return pageSize
**/
@Schema(description = "")
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public DescribeVpcGatewayEndpointsResponse requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Get requestId
* @return requestId
**/
@Schema(description = "")
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public DescribeVpcGatewayEndpointsResponse totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* Get totalCount
* @return totalCount
**/
@Schema(description = "")
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DescribeVpcGatewayEndpointsResponse describeVpcGatewayEndpointsResponse = (DescribeVpcGatewayEndpointsResponse) o;
return Objects.equals(this.endpoints, describeVpcGatewayEndpointsResponse.endpoints) &&
Objects.equals(this.gatewayEndpoints, describeVpcGatewayEndpointsResponse.gatewayEndpoints) &&
Objects.equals(this.pageNumber, describeVpcGatewayEndpointsResponse.pageNumber) &&
Objects.equals(this.pageSize, describeVpcGatewayEndpointsResponse.pageSize) &&
Objects.equals(this.requestId, describeVpcGatewayEndpointsResponse.requestId) &&
Objects.equals(this.totalCount, describeVpcGatewayEndpointsResponse.totalCount);
}
@Override
public int hashCode() {
return Objects.hash(endpoints, gatewayEndpoints, pageNumber, pageSize, requestId, totalCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DescribeVpcGatewayEndpointsResponse {\n");
sb.append(" endpoints: ").append(toIndentedString(endpoints)).append("\n");
sb.append(" gatewayEndpoints: ").append(toIndentedString(gatewayEndpoints)).append("\n");
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" requestId: ").append(toIndentedString(requestId)).append("\n");
sb.append(" totalCount: ").append(toIndentedString(totalCount)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}