com.volcengine.kms.model.GetParametersForImportRequest 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;
/**
* GetParametersForImportRequest
*/
public class GetParametersForImportRequest {
@SerializedName("KeyName")
private String keyName = null;
@SerializedName("KeyringName")
private String keyringName = null;
@SerializedName("WrappingAlgorithm")
private String wrappingAlgorithm = null;
@SerializedName("WrappingKeySpec")
private String wrappingKeySpec = null;
public GetParametersForImportRequest 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 GetParametersForImportRequest 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 GetParametersForImportRequest wrappingAlgorithm(String wrappingAlgorithm) {
this.wrappingAlgorithm = wrappingAlgorithm;
return this;
}
/**
* Get wrappingAlgorithm
* @return wrappingAlgorithm
**/
@Schema(description = "")
public String getWrappingAlgorithm() {
return wrappingAlgorithm;
}
public void setWrappingAlgorithm(String wrappingAlgorithm) {
this.wrappingAlgorithm = wrappingAlgorithm;
}
public GetParametersForImportRequest wrappingKeySpec(String wrappingKeySpec) {
this.wrappingKeySpec = wrappingKeySpec;
return this;
}
/**
* Get wrappingKeySpec
* @return wrappingKeySpec
**/
@Schema(description = "")
public String getWrappingKeySpec() {
return wrappingKeySpec;
}
public void setWrappingKeySpec(String wrappingKeySpec) {
this.wrappingKeySpec = wrappingKeySpec;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetParametersForImportRequest getParametersForImportRequest = (GetParametersForImportRequest) o;
return Objects.equals(this.keyName, getParametersForImportRequest.keyName) &&
Objects.equals(this.keyringName, getParametersForImportRequest.keyringName) &&
Objects.equals(this.wrappingAlgorithm, getParametersForImportRequest.wrappingAlgorithm) &&
Objects.equals(this.wrappingKeySpec, getParametersForImportRequest.wrappingKeySpec);
}
@Override
public int hashCode() {
return Objects.hash(keyName, keyringName, wrappingAlgorithm, wrappingKeySpec);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetParametersForImportRequest {\n");
sb.append(" keyName: ").append(toIndentedString(keyName)).append("\n");
sb.append(" keyringName: ").append(toIndentedString(keyringName)).append("\n");
sb.append(" wrappingAlgorithm: ").append(toIndentedString(wrappingAlgorithm)).append("\n");
sb.append(" wrappingKeySpec: ").append(toIndentedString(wrappingKeySpec)).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