com.volcengine.kms.model.AsymmetricDecryptRequest Maven / Gradle / Ivy
/*
* 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;
/**
* AsymmetricDecryptRequest
*/
public class AsymmetricDecryptRequest {
@SerializedName("Algorithm")
private String algorithm = null;
@SerializedName("CiphertextBlob")
private String ciphertextBlob = null;
@SerializedName("KeyID")
private String keyID = null;
@SerializedName("KeyName")
private String keyName = null;
@SerializedName("KeyringName")
private String keyringName = null;
public AsymmetricDecryptRequest algorithm(String algorithm) {
this.algorithm = algorithm;
return this;
}
/**
* Get algorithm
* @return algorithm
**/
@NotNull
@Schema(required = true, description = "")
public String getAlgorithm() {
return algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
public AsymmetricDecryptRequest ciphertextBlob(String ciphertextBlob) {
this.ciphertextBlob = ciphertextBlob;
return this;
}
/**
* Get ciphertextBlob
* @return ciphertextBlob
**/
@NotNull
@Size(min=1,max=4096) @Schema(required = true, description = "")
public String getCiphertextBlob() {
return ciphertextBlob;
}
public void setCiphertextBlob(String ciphertextBlob) {
this.ciphertextBlob = ciphertextBlob;
}
public AsymmetricDecryptRequest keyID(String keyID) {
this.keyID = keyID;
return this;
}
/**
* Get keyID
* @return keyID
**/
@Schema(description = "")
public String getKeyID() {
return keyID;
}
public void setKeyID(String keyID) {
this.keyID = keyID;
}
public AsymmetricDecryptRequest keyName(String keyName) {
this.keyName = keyName;
return this;
}
/**
* Get keyName
* @return keyName
**/
@Size(min=2,max=31) @Schema(description = "")
public String getKeyName() {
return keyName;
}
public void setKeyName(String keyName) {
this.keyName = keyName;
}
public AsymmetricDecryptRequest keyringName(String keyringName) {
this.keyringName = keyringName;
return this;
}
/**
* Get keyringName
* @return keyringName
**/
@Size(min=2,max=31) @Schema(description = "")
public String getKeyringName() {
return keyringName;
}
public void setKeyringName(String keyringName) {
this.keyringName = keyringName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AsymmetricDecryptRequest asymmetricDecryptRequest = (AsymmetricDecryptRequest) o;
return Objects.equals(this.algorithm, asymmetricDecryptRequest.algorithm) &&
Objects.equals(this.ciphertextBlob, asymmetricDecryptRequest.ciphertextBlob) &&
Objects.equals(this.keyID, asymmetricDecryptRequest.keyID) &&
Objects.equals(this.keyName, asymmetricDecryptRequest.keyName) &&
Objects.equals(this.keyringName, asymmetricDecryptRequest.keyringName);
}
@Override
public int hashCode() {
return Objects.hash(algorithm, ciphertextBlob, keyID, keyName, keyringName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AsymmetricDecryptRequest {\n");
sb.append(" algorithm: ").append(toIndentedString(algorithm)).append("\n");
sb.append(" ciphertextBlob: ").append(toIndentedString(ciphertextBlob)).append("\n");
sb.append(" keyID: ").append(toIndentedString(keyID)).append("\n");
sb.append(" keyName: ").append(toIndentedString(keyName)).append("\n");
sb.append(" keyringName: ").append(toIndentedString(keyringName)).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