com.volcengine.privatelink.model.DescribeVpcEndpointsRequest 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.TagFilterForDescribeVpcEndpointsInput;
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;
/**
* DescribeVpcEndpointsRequest
*/
public class DescribeVpcEndpointsRequest {
@SerializedName("EndpointIds")
private List endpointIds = null;
@SerializedName("EndpointIndex")
private Integer endpointIndex = null;
@SerializedName("EndpointName")
private String endpointName = null;
@SerializedName("EndpointType")
private String endpointType = null;
@SerializedName("PageNumber")
private Integer pageNumber = null;
@SerializedName("PageSize")
private Integer pageSize = null;
@SerializedName("ProjectName")
private String projectName = null;
@SerializedName("ServiceId")
private String serviceId = null;
@SerializedName("ServiceName")
private String serviceName = null;
@SerializedName("Status")
private String status = null;
@SerializedName("TagFilters")
private List tagFilters = null;
@SerializedName("VpcId")
private String vpcId = null;
public DescribeVpcEndpointsRequest endpointIds(List endpointIds) {
this.endpointIds = endpointIds;
return this;
}
public DescribeVpcEndpointsRequest addEndpointIdsItem(String endpointIdsItem) {
if (this.endpointIds == null) {
this.endpointIds = new ArrayList();
}
this.endpointIds.add(endpointIdsItem);
return this;
}
/**
* Get endpointIds
* @return endpointIds
**/
@Schema(description = "")
public List getEndpointIds() {
return endpointIds;
}
public void setEndpointIds(List endpointIds) {
this.endpointIds = endpointIds;
}
public DescribeVpcEndpointsRequest endpointIndex(Integer endpointIndex) {
this.endpointIndex = endpointIndex;
return this;
}
/**
* Get endpointIndex
* @return endpointIndex
**/
@Schema(description = "")
public Integer getEndpointIndex() {
return endpointIndex;
}
public void setEndpointIndex(Integer endpointIndex) {
this.endpointIndex = endpointIndex;
}
public DescribeVpcEndpointsRequest endpointName(String endpointName) {
this.endpointName = endpointName;
return this;
}
/**
* Get endpointName
* @return endpointName
**/
@Schema(description = "")
public String getEndpointName() {
return endpointName;
}
public void setEndpointName(String endpointName) {
this.endpointName = endpointName;
}
public DescribeVpcEndpointsRequest endpointType(String endpointType) {
this.endpointType = endpointType;
return this;
}
/**
* Get endpointType
* @return endpointType
**/
@Schema(description = "")
public String getEndpointType() {
return endpointType;
}
public void setEndpointType(String endpointType) {
this.endpointType = endpointType;
}
public DescribeVpcEndpointsRequest 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 DescribeVpcEndpointsRequest 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 DescribeVpcEndpointsRequest projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@Schema(description = "")
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public DescribeVpcEndpointsRequest serviceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
/**
* Get serviceId
* @return serviceId
**/
@Schema(description = "")
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public DescribeVpcEndpointsRequest serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Get serviceName
* @return serviceName
**/
@Schema(description = "")
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public DescribeVpcEndpointsRequest status(String status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@Schema(description = "")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public DescribeVpcEndpointsRequest tagFilters(List tagFilters) {
this.tagFilters = tagFilters;
return this;
}
public DescribeVpcEndpointsRequest addTagFiltersItem(TagFilterForDescribeVpcEndpointsInput tagFiltersItem) {
if (this.tagFilters == null) {
this.tagFilters = new ArrayList();
}
this.tagFilters.add(tagFiltersItem);
return this;
}
/**
* Get tagFilters
* @return tagFilters
**/
@Valid
@Schema(description = "")
public List getTagFilters() {
return tagFilters;
}
public void setTagFilters(List tagFilters) {
this.tagFilters = tagFilters;
}
public DescribeVpcEndpointsRequest vpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
/**
* Get vpcId
* @return vpcId
**/
@Schema(description = "")
public String getVpcId() {
return vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DescribeVpcEndpointsRequest describeVpcEndpointsRequest = (DescribeVpcEndpointsRequest) o;
return Objects.equals(this.endpointIds, describeVpcEndpointsRequest.endpointIds) &&
Objects.equals(this.endpointIndex, describeVpcEndpointsRequest.endpointIndex) &&
Objects.equals(this.endpointName, describeVpcEndpointsRequest.endpointName) &&
Objects.equals(this.endpointType, describeVpcEndpointsRequest.endpointType) &&
Objects.equals(this.pageNumber, describeVpcEndpointsRequest.pageNumber) &&
Objects.equals(this.pageSize, describeVpcEndpointsRequest.pageSize) &&
Objects.equals(this.projectName, describeVpcEndpointsRequest.projectName) &&
Objects.equals(this.serviceId, describeVpcEndpointsRequest.serviceId) &&
Objects.equals(this.serviceName, describeVpcEndpointsRequest.serviceName) &&
Objects.equals(this.status, describeVpcEndpointsRequest.status) &&
Objects.equals(this.tagFilters, describeVpcEndpointsRequest.tagFilters) &&
Objects.equals(this.vpcId, describeVpcEndpointsRequest.vpcId);
}
@Override
public int hashCode() {
return Objects.hash(endpointIds, endpointIndex, endpointName, endpointType, pageNumber, pageSize, projectName, serviceId, serviceName, status, tagFilters, vpcId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DescribeVpcEndpointsRequest {\n");
sb.append(" endpointIds: ").append(toIndentedString(endpointIds)).append("\n");
sb.append(" endpointIndex: ").append(toIndentedString(endpointIndex)).append("\n");
sb.append(" endpointName: ").append(toIndentedString(endpointName)).append("\n");
sb.append(" endpointType: ").append(toIndentedString(endpointType)).append("\n");
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" serviceId: ").append(toIndentedString(serviceId)).append("\n");
sb.append(" serviceName: ").append(toIndentedString(serviceName)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" tagFilters: ").append(toIndentedString(tagFilters)).append("\n");
sb.append(" vpcId: ").append(toIndentedString(vpcId)).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 ");
}
}