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

com.volcengine.kms.model.CreateKeyringRequest Maven / Gradle / Ivy

There is a newer version: 0.1.136
Show newest version
/*
 * kms
 * 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.kms.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 javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * CreateKeyringRequest
 */



public class CreateKeyringRequest {
  @SerializedName("Description")
  private String description = null;

  @SerializedName("KeyringName")
  private String keyringName = null;

  @SerializedName("KeyringType")
  private String keyringType = null;

  @SerializedName("ProjectName")
  private String projectName = null;

  public CreateKeyringRequest description(String description) {
    this.description = description;
    return this;
  }

   /**
   * Get description
   * @return description
  **/
 @Size(max=8192)  @Schema(description = "")
  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public CreateKeyringRequest keyringName(String keyringName) {
    this.keyringName = keyringName;
    return this;
  }

   /**
   * Get keyringName
   * @return keyringName
  **/
  @NotNull
 @Size(min=2,max=31)  @Schema(required = true, description = "")
  public String getKeyringName() {
    return keyringName;
  }

  public void setKeyringName(String keyringName) {
    this.keyringName = keyringName;
  }

  public CreateKeyringRequest keyringType(String keyringType) {
    this.keyringType = keyringType;
    return this;
  }

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

  public void setKeyringType(String keyringType) {
    this.keyringType = keyringType;
  }

  public CreateKeyringRequest 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;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CreateKeyringRequest createKeyringRequest = (CreateKeyringRequest) o;
    return Objects.equals(this.description, createKeyringRequest.description) &&
        Objects.equals(this.keyringName, createKeyringRequest.keyringName) &&
        Objects.equals(this.keyringType, createKeyringRequest.keyringType) &&
        Objects.equals(this.projectName, createKeyringRequest.projectName);
  }

  @Override
  public int hashCode() {
    return Objects.hash(description, keyringName, keyringType, projectName);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CreateKeyringRequest {\n");
    
    sb.append("    description: ").append(toIndentedString(description)).append("\n");
    sb.append("    keyringName: ").append(toIndentedString(keyringName)).append("\n");
    sb.append("    keyringType: ").append(toIndentedString(keyringType)).append("\n");
    sb.append("    projectName: ").append(toIndentedString(projectName)).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