com.volcengine.kms.model.UpdateKeyRequest 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;
/**
* UpdateKeyRequest
*/
public class UpdateKeyRequest {
@SerializedName("Description")
private String description = null;
@SerializedName("KeyName")
private String keyName = null;
@SerializedName("KeyringName")
private String keyringName = null;
@SerializedName("NewKeyName")
private String newKeyName = null;
public UpdateKeyRequest 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 UpdateKeyRequest 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 UpdateKeyRequest 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 UpdateKeyRequest newKeyName(String newKeyName) {
this.newKeyName = newKeyName;
return this;
}
/**
* Get newKeyName
* @return newKeyName
**/
@Size(min=2,max=31) @Schema(description = "")
public String getNewKeyName() {
return newKeyName;
}
public void setNewKeyName(String newKeyName) {
this.newKeyName = newKeyName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateKeyRequest updateKeyRequest = (UpdateKeyRequest) o;
return Objects.equals(this.description, updateKeyRequest.description) &&
Objects.equals(this.keyName, updateKeyRequest.keyName) &&
Objects.equals(this.keyringName, updateKeyRequest.keyringName) &&
Objects.equals(this.newKeyName, updateKeyRequest.newKeyName);
}
@Override
public int hashCode() {
return Objects.hash(description, keyName, keyringName, newKeyName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateKeyRequest {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" keyName: ").append(toIndentedString(keyName)).append("\n");
sb.append(" keyringName: ").append(toIndentedString(keyringName)).append("\n");
sb.append(" newKeyName: ").append(toIndentedString(newKeyName)).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