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

com.volcengine.rdsmysqlv2.model.CreateAllowListRequest Maven / Gradle / Ivy

There is a newer version: 1.0.75
Show newest version
/*
 * rds_mysql_v2
 * 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.rdsmysqlv2.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.rdsmysqlv2.model.SecurityGroupBindInfoForCreateAllowListInput;
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;
/**
 * CreateAllowListRequest
 */



public class CreateAllowListRequest {
  @SerializedName("AllowList")
  private String allowList = null;

  @SerializedName("AllowListCategory")
  private String allowListCategory = null;

  @SerializedName("AllowListDesc")
  private String allowListDesc = null;

  @SerializedName("AllowListName")
  private String allowListName = null;

  @SerializedName("AllowListType")
  private String allowListType = null;

  @SerializedName("SecurityGroupBindInfos")
  private List securityGroupBindInfos = null;

  @SerializedName("SecurityGroupIds")
  private List securityGroupIds = null;

  @SerializedName("UserAllowList")
  private String userAllowList = null;

  public CreateAllowListRequest allowList(String allowList) {
    this.allowList = allowList;
    return this;
  }

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

  public void setAllowList(String allowList) {
    this.allowList = allowList;
  }

  public CreateAllowListRequest allowListCategory(String allowListCategory) {
    this.allowListCategory = allowListCategory;
    return this;
  }

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

  public void setAllowListCategory(String allowListCategory) {
    this.allowListCategory = allowListCategory;
  }

  public CreateAllowListRequest allowListDesc(String allowListDesc) {
    this.allowListDesc = allowListDesc;
    return this;
  }

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

  public void setAllowListDesc(String allowListDesc) {
    this.allowListDesc = allowListDesc;
  }

  public CreateAllowListRequest allowListName(String allowListName) {
    this.allowListName = allowListName;
    return this;
  }

   /**
   * Get allowListName
   * @return allowListName
  **/
  @NotNull
  @Schema(required = true, description = "")
  public String getAllowListName() {
    return allowListName;
  }

  public void setAllowListName(String allowListName) {
    this.allowListName = allowListName;
  }

  public CreateAllowListRequest allowListType(String allowListType) {
    this.allowListType = allowListType;
    return this;
  }

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

  public void setAllowListType(String allowListType) {
    this.allowListType = allowListType;
  }

  public CreateAllowListRequest securityGroupBindInfos(List securityGroupBindInfos) {
    this.securityGroupBindInfos = securityGroupBindInfos;
    return this;
  }

  public CreateAllowListRequest addSecurityGroupBindInfosItem(SecurityGroupBindInfoForCreateAllowListInput securityGroupBindInfosItem) {
    if (this.securityGroupBindInfos == null) {
      this.securityGroupBindInfos = new ArrayList();
    }
    this.securityGroupBindInfos.add(securityGroupBindInfosItem);
    return this;
  }

   /**
   * Get securityGroupBindInfos
   * @return securityGroupBindInfos
  **/
  @Valid
  @Schema(description = "")
  public List getSecurityGroupBindInfos() {
    return securityGroupBindInfos;
  }

  public void setSecurityGroupBindInfos(List securityGroupBindInfos) {
    this.securityGroupBindInfos = securityGroupBindInfos;
  }

  public CreateAllowListRequest securityGroupIds(List securityGroupIds) {
    this.securityGroupIds = securityGroupIds;
    return this;
  }

  public CreateAllowListRequest addSecurityGroupIdsItem(String securityGroupIdsItem) {
    if (this.securityGroupIds == null) {
      this.securityGroupIds = new ArrayList();
    }
    this.securityGroupIds.add(securityGroupIdsItem);
    return this;
  }

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

  public void setSecurityGroupIds(List securityGroupIds) {
    this.securityGroupIds = securityGroupIds;
  }

  public CreateAllowListRequest userAllowList(String userAllowList) {
    this.userAllowList = userAllowList;
    return this;
  }

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

  public void setUserAllowList(String userAllowList) {
    this.userAllowList = userAllowList;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CreateAllowListRequest createAllowListRequest = (CreateAllowListRequest) o;
    return Objects.equals(this.allowList, createAllowListRequest.allowList) &&
        Objects.equals(this.allowListCategory, createAllowListRequest.allowListCategory) &&
        Objects.equals(this.allowListDesc, createAllowListRequest.allowListDesc) &&
        Objects.equals(this.allowListName, createAllowListRequest.allowListName) &&
        Objects.equals(this.allowListType, createAllowListRequest.allowListType) &&
        Objects.equals(this.securityGroupBindInfos, createAllowListRequest.securityGroupBindInfos) &&
        Objects.equals(this.securityGroupIds, createAllowListRequest.securityGroupIds) &&
        Objects.equals(this.userAllowList, createAllowListRequest.userAllowList);
  }

  @Override
  public int hashCode() {
    return Objects.hash(allowList, allowListCategory, allowListDesc, allowListName, allowListType, securityGroupBindInfos, securityGroupIds, userAllowList);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CreateAllowListRequest {\n");
    
    sb.append("    allowList: ").append(toIndentedString(allowList)).append("\n");
    sb.append("    allowListCategory: ").append(toIndentedString(allowListCategory)).append("\n");
    sb.append("    allowListDesc: ").append(toIndentedString(allowListDesc)).append("\n");
    sb.append("    allowListName: ").append(toIndentedString(allowListName)).append("\n");
    sb.append("    allowListType: ").append(toIndentedString(allowListType)).append("\n");
    sb.append("    securityGroupBindInfos: ").append(toIndentedString(securityGroupBindInfos)).append("\n");
    sb.append("    securityGroupIds: ").append(toIndentedString(securityGroupIds)).append("\n");
    sb.append("    userAllowList: ").append(toIndentedString(userAllowList)).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