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

com.volcengine.kms.model.ImportKeyMaterialRequest 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;
/**
 * ImportKeyMaterialRequest
 */



public class ImportKeyMaterialRequest {
  @SerializedName("EncryptedKeyMaterial")
  private String encryptedKeyMaterial = null;

  @SerializedName("ExpirationModel")
  private String expirationModel = null;

  @SerializedName("ImportToken")
  private String importToken = null;

  @SerializedName("KeyName")
  private String keyName = null;

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

  @SerializedName("ValidTo")
  private Long validTo = null;

  public ImportKeyMaterialRequest encryptedKeyMaterial(String encryptedKeyMaterial) {
    this.encryptedKeyMaterial = encryptedKeyMaterial;
    return this;
  }

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

  public void setEncryptedKeyMaterial(String encryptedKeyMaterial) {
    this.encryptedKeyMaterial = encryptedKeyMaterial;
  }

  public ImportKeyMaterialRequest expirationModel(String expirationModel) {
    this.expirationModel = expirationModel;
    return this;
  }

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

  public void setExpirationModel(String expirationModel) {
    this.expirationModel = expirationModel;
  }

  public ImportKeyMaterialRequest importToken(String importToken) {
    this.importToken = importToken;
    return this;
  }

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

  public void setImportToken(String importToken) {
    this.importToken = importToken;
  }

  public ImportKeyMaterialRequest keyName(String keyName) {
    this.keyName = keyName;
    return this;
  }

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

  public void setKeyName(String keyName) {
    this.keyName = keyName;
  }

  public ImportKeyMaterialRequest 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 ImportKeyMaterialRequest validTo(Long validTo) {
    this.validTo = validTo;
    return this;
  }

   /**
   * Get validTo
   * @return validTo
  **/
  @Schema(description = "")
  public Long getValidTo() {
    return validTo;
  }

  public void setValidTo(Long validTo) {
    this.validTo = validTo;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ImportKeyMaterialRequest importKeyMaterialRequest = (ImportKeyMaterialRequest) o;
    return Objects.equals(this.encryptedKeyMaterial, importKeyMaterialRequest.encryptedKeyMaterial) &&
        Objects.equals(this.expirationModel, importKeyMaterialRequest.expirationModel) &&
        Objects.equals(this.importToken, importKeyMaterialRequest.importToken) &&
        Objects.equals(this.keyName, importKeyMaterialRequest.keyName) &&
        Objects.equals(this.keyringName, importKeyMaterialRequest.keyringName) &&
        Objects.equals(this.validTo, importKeyMaterialRequest.validTo);
  }

  @Override
  public int hashCode() {
    return Objects.hash(encryptedKeyMaterial, expirationModel, importToken, keyName, keyringName, validTo);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ImportKeyMaterialRequest {\n");
    
    sb.append("    encryptedKeyMaterial: ").append(toIndentedString(encryptedKeyMaterial)).append("\n");
    sb.append("    expirationModel: ").append(toIndentedString(expirationModel)).append("\n");
    sb.append("    importToken: ").append(toIndentedString(importToken)).append("\n");
    sb.append("    keyName: ").append(toIndentedString(keyName)).append("\n");
    sb.append("    keyringName: ").append(toIndentedString(keyringName)).append("\n");
    sb.append("    validTo: ").append(toIndentedString(validTo)).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