com.volcengine.privatelink.model.ModifyVpcEndpointAttributesRequest Maven / Gradle / Ivy
/*
* privatelink
* 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.privatelink.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 java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* ModifyVpcEndpointAttributesRequest
*/
public class ModifyVpcEndpointAttributesRequest {
@SerializedName("Description")
private String description = null;
@SerializedName("EndpointId")
private String endpointId = null;
@SerializedName("EndpointName")
private String endpointName = null;
@SerializedName("IpAddressVersions")
private List ipAddressVersions = null;
@SerializedName("PrivateDNSEnabled")
private Boolean privateDNSEnabled = null;
public ModifyVpcEndpointAttributesRequest description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@Schema(description = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public ModifyVpcEndpointAttributesRequest endpointId(String endpointId) {
this.endpointId = endpointId;
return this;
}
/**
* Get endpointId
* @return endpointId
**/
@NotNull
@Schema(required = true, description = "")
public String getEndpointId() {
return endpointId;
}
public void setEndpointId(String endpointId) {
this.endpointId = endpointId;
}
public ModifyVpcEndpointAttributesRequest endpointName(String endpointName) {
this.endpointName = endpointName;
return this;
}
/**
* Get endpointName
* @return endpointName
**/
@Schema(description = "")
public String getEndpointName() {
return endpointName;
}
public void setEndpointName(String endpointName) {
this.endpointName = endpointName;
}
public ModifyVpcEndpointAttributesRequest ipAddressVersions(List ipAddressVersions) {
this.ipAddressVersions = ipAddressVersions;
return this;
}
public ModifyVpcEndpointAttributesRequest addIpAddressVersionsItem(String ipAddressVersionsItem) {
if (this.ipAddressVersions == null) {
this.ipAddressVersions = new ArrayList();
}
this.ipAddressVersions.add(ipAddressVersionsItem);
return this;
}
/**
* Get ipAddressVersions
* @return ipAddressVersions
**/
@Schema(description = "")
public List getIpAddressVersions() {
return ipAddressVersions;
}
public void setIpAddressVersions(List ipAddressVersions) {
this.ipAddressVersions = ipAddressVersions;
}
public ModifyVpcEndpointAttributesRequest privateDNSEnabled(Boolean privateDNSEnabled) {
this.privateDNSEnabled = privateDNSEnabled;
return this;
}
/**
* Get privateDNSEnabled
* @return privateDNSEnabled
**/
@Schema(description = "")
public Boolean isPrivateDNSEnabled() {
return privateDNSEnabled;
}
public void setPrivateDNSEnabled(Boolean privateDNSEnabled) {
this.privateDNSEnabled = privateDNSEnabled;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ModifyVpcEndpointAttributesRequest modifyVpcEndpointAttributesRequest = (ModifyVpcEndpointAttributesRequest) o;
return Objects.equals(this.description, modifyVpcEndpointAttributesRequest.description) &&
Objects.equals(this.endpointId, modifyVpcEndpointAttributesRequest.endpointId) &&
Objects.equals(this.endpointName, modifyVpcEndpointAttributesRequest.endpointName) &&
Objects.equals(this.ipAddressVersions, modifyVpcEndpointAttributesRequest.ipAddressVersions) &&
Objects.equals(this.privateDNSEnabled, modifyVpcEndpointAttributesRequest.privateDNSEnabled);
}
@Override
public int hashCode() {
return Objects.hash(description, endpointId, endpointName, ipAddressVersions, privateDNSEnabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ModifyVpcEndpointAttributesRequest {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" endpointId: ").append(toIndentedString(endpointId)).append("\n");
sb.append(" endpointName: ").append(toIndentedString(endpointName)).append("\n");
sb.append(" ipAddressVersions: ").append(toIndentedString(ipAddressVersions)).append("\n");
sb.append(" privateDNSEnabled: ").append(toIndentedString(privateDNSEnabled)).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 ");
}
}