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

com.volcengine.privatelink.model.DescribeVpcLinksRequest Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show newest version
/*
 * 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 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;
/**
 * DescribeVpcLinksRequest
 */



public class DescribeVpcLinksRequest {
  @SerializedName("CustomerAccountId")
  private String customerAccountId = null;

  @SerializedName("PageNumber")
  private Integer pageNumber = null;

  @SerializedName("PageSize")
  private Integer pageSize = null;

  @SerializedName("PrivateLinkGatewayId")
  private String privateLinkGatewayId = null;

  @SerializedName("VpcLinkIds")
  private List vpcLinkIds = null;

  @SerializedName("VpcLinkName")
  private String vpcLinkName = null;

  public DescribeVpcLinksRequest customerAccountId(String customerAccountId) {
    this.customerAccountId = customerAccountId;
    return this;
  }

   /**
   * Get customerAccountId
   * @return customerAccountId
  **/
  @Schema(description = "")
  public String getCustomerAccountId() {
    return customerAccountId;
  }

  public void setCustomerAccountId(String customerAccountId) {
    this.customerAccountId = customerAccountId;
  }

  public DescribeVpcLinksRequest 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 DescribeVpcLinksRequest 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 DescribeVpcLinksRequest privateLinkGatewayId(String privateLinkGatewayId) {
    this.privateLinkGatewayId = privateLinkGatewayId;
    return this;
  }

   /**
   * Get privateLinkGatewayId
   * @return privateLinkGatewayId
  **/
  @Schema(description = "")
  public String getPrivateLinkGatewayId() {
    return privateLinkGatewayId;
  }

  public void setPrivateLinkGatewayId(String privateLinkGatewayId) {
    this.privateLinkGatewayId = privateLinkGatewayId;
  }

  public DescribeVpcLinksRequest vpcLinkIds(List vpcLinkIds) {
    this.vpcLinkIds = vpcLinkIds;
    return this;
  }

  public DescribeVpcLinksRequest addVpcLinkIdsItem(String vpcLinkIdsItem) {
    if (this.vpcLinkIds == null) {
      this.vpcLinkIds = new ArrayList();
    }
    this.vpcLinkIds.add(vpcLinkIdsItem);
    return this;
  }

   /**
   * Get vpcLinkIds
   * @return vpcLinkIds
  **/
  @Schema(description = "")
  public List getVpcLinkIds() {
    return vpcLinkIds;
  }

  public void setVpcLinkIds(List vpcLinkIds) {
    this.vpcLinkIds = vpcLinkIds;
  }

  public DescribeVpcLinksRequest vpcLinkName(String vpcLinkName) {
    this.vpcLinkName = vpcLinkName;
    return this;
  }

   /**
   * Get vpcLinkName
   * @return vpcLinkName
  **/
  @Schema(description = "")
  public String getVpcLinkName() {
    return vpcLinkName;
  }

  public void setVpcLinkName(String vpcLinkName) {
    this.vpcLinkName = vpcLinkName;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DescribeVpcLinksRequest describeVpcLinksRequest = (DescribeVpcLinksRequest) o;
    return Objects.equals(this.customerAccountId, describeVpcLinksRequest.customerAccountId) &&
        Objects.equals(this.pageNumber, describeVpcLinksRequest.pageNumber) &&
        Objects.equals(this.pageSize, describeVpcLinksRequest.pageSize) &&
        Objects.equals(this.privateLinkGatewayId, describeVpcLinksRequest.privateLinkGatewayId) &&
        Objects.equals(this.vpcLinkIds, describeVpcLinksRequest.vpcLinkIds) &&
        Objects.equals(this.vpcLinkName, describeVpcLinksRequest.vpcLinkName);
  }

  @Override
  public int hashCode() {
    return Objects.hash(customerAccountId, pageNumber, pageSize, privateLinkGatewayId, vpcLinkIds, vpcLinkName);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DescribeVpcLinksRequest {\n");
    
    sb.append("    customerAccountId: ").append(toIndentedString(customerAccountId)).append("\n");
    sb.append("    pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
    sb.append("    pageSize: ").append(toIndentedString(pageSize)).append("\n");
    sb.append("    privateLinkGatewayId: ").append(toIndentedString(privateLinkGatewayId)).append("\n");
    sb.append("    vpcLinkIds: ").append(toIndentedString(vpcLinkIds)).append("\n");
    sb.append("    vpcLinkName: ").append(toIndentedString(vpcLinkName)).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    ");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy