All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.volcengine.privatelink.model.VpcEndpointServiceForDescribeVpcEndpointServicesOutput 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 com.volcengine.privatelink.model.PrivateDNSNameConfigurationForDescribeVpcEndpointServicesOutput;
import com.volcengine.privatelink.model.TagForDescribeVpcEndpointServicesOutput;
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;
/**
* VpcEndpointServiceForDescribeVpcEndpointServicesOutput
*/
public class VpcEndpointServiceForDescribeVpcEndpointServicesOutput {
@SerializedName("AutoAcceptEnabled")
private Boolean autoAcceptEnabled = null;
@SerializedName("BillingType")
private Integer billingType = null;
@SerializedName("BusinessStatus")
private String businessStatus = null;
@SerializedName("CreationTime")
private String creationTime = null;
@SerializedName("Description")
private String description = null;
@SerializedName("IpAddressVersions")
private List ipAddressVersions = null;
@SerializedName("Payer")
private String payer = null;
@SerializedName("PrivateDNSEnabled")
private Boolean privateDNSEnabled = null;
@SerializedName("PrivateDNSName")
private String privateDNSName = null;
@SerializedName("PrivateDNSNameConfiguration")
private PrivateDNSNameConfigurationForDescribeVpcEndpointServicesOutput privateDNSNameConfiguration = null;
@SerializedName("PrivateDNSType")
private String privateDNSType = null;
@SerializedName("ProjectName")
private String projectName = null;
@SerializedName("ServiceDomain")
private String serviceDomain = null;
@SerializedName("ServiceId")
private String serviceId = null;
@SerializedName("ServiceName")
private String serviceName = null;
@SerializedName("ServiceOwner")
private String serviceOwner = null;
@SerializedName("ServiceResourceType")
private String serviceResourceType = null;
@SerializedName("ServiceType")
private String serviceType = null;
@SerializedName("Status")
private String status = null;
@SerializedName("Tags")
private List tags = null;
@SerializedName("UpdateTime")
private String updateTime = null;
@SerializedName("WildcardDomainEnabled")
private String wildcardDomainEnabled = null;
@SerializedName("ZoneIds")
private List zoneIds = null;
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput autoAcceptEnabled(Boolean autoAcceptEnabled) {
this.autoAcceptEnabled = autoAcceptEnabled;
return this;
}
/**
* Get autoAcceptEnabled
* @return autoAcceptEnabled
**/
@Schema(description = "")
public Boolean isAutoAcceptEnabled() {
return autoAcceptEnabled;
}
public void setAutoAcceptEnabled(Boolean autoAcceptEnabled) {
this.autoAcceptEnabled = autoAcceptEnabled;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput billingType(Integer billingType) {
this.billingType = billingType;
return this;
}
/**
* Get billingType
* @return billingType
**/
@Schema(description = "")
public Integer getBillingType() {
return billingType;
}
public void setBillingType(Integer billingType) {
this.billingType = billingType;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput businessStatus(String businessStatus) {
this.businessStatus = businessStatus;
return this;
}
/**
* Get businessStatus
* @return businessStatus
**/
@Schema(description = "")
public String getBusinessStatus() {
return businessStatus;
}
public void setBusinessStatus(String businessStatus) {
this.businessStatus = businessStatus;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput creationTime(String creationTime) {
this.creationTime = creationTime;
return this;
}
/**
* Get creationTime
* @return creationTime
**/
@Schema(description = "")
public String getCreationTime() {
return creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesOutput ipAddressVersions(List ipAddressVersions) {
this.ipAddressVersions = ipAddressVersions;
return this;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesOutput payer(String payer) {
this.payer = payer;
return this;
}
/**
* Get payer
* @return payer
**/
@Schema(description = "")
public String getPayer() {
return payer;
}
public void setPayer(String payer) {
this.payer = payer;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput 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;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput privateDNSName(String privateDNSName) {
this.privateDNSName = privateDNSName;
return this;
}
/**
* Get privateDNSName
* @return privateDNSName
**/
@Schema(description = "")
public String getPrivateDNSName() {
return privateDNSName;
}
public void setPrivateDNSName(String privateDNSName) {
this.privateDNSName = privateDNSName;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput privateDNSNameConfiguration(PrivateDNSNameConfigurationForDescribeVpcEndpointServicesOutput privateDNSNameConfiguration) {
this.privateDNSNameConfiguration = privateDNSNameConfiguration;
return this;
}
/**
* Get privateDNSNameConfiguration
* @return privateDNSNameConfiguration
**/
@Valid
@Schema(description = "")
public PrivateDNSNameConfigurationForDescribeVpcEndpointServicesOutput getPrivateDNSNameConfiguration() {
return privateDNSNameConfiguration;
}
public void setPrivateDNSNameConfiguration(PrivateDNSNameConfigurationForDescribeVpcEndpointServicesOutput privateDNSNameConfiguration) {
this.privateDNSNameConfiguration = privateDNSNameConfiguration;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput privateDNSType(String privateDNSType) {
this.privateDNSType = privateDNSType;
return this;
}
/**
* Get privateDNSType
* @return privateDNSType
**/
@Schema(description = "")
public String getPrivateDNSType() {
return privateDNSType;
}
public void setPrivateDNSType(String privateDNSType) {
this.privateDNSType = privateDNSType;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@Schema(description = "")
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceDomain(String serviceDomain) {
this.serviceDomain = serviceDomain;
return this;
}
/**
* Get serviceDomain
* @return serviceDomain
**/
@Schema(description = "")
public String getServiceDomain() {
return serviceDomain;
}
public void setServiceDomain(String serviceDomain) {
this.serviceDomain = serviceDomain;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
/**
* Get serviceId
* @return serviceId
**/
@Schema(description = "")
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Get serviceName
* @return serviceName
**/
@Schema(description = "")
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceOwner(String serviceOwner) {
this.serviceOwner = serviceOwner;
return this;
}
/**
* Get serviceOwner
* @return serviceOwner
**/
@Schema(description = "")
public String getServiceOwner() {
return serviceOwner;
}
public void setServiceOwner(String serviceOwner) {
this.serviceOwner = serviceOwner;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceResourceType(String serviceResourceType) {
this.serviceResourceType = serviceResourceType;
return this;
}
/**
* Get serviceResourceType
* @return serviceResourceType
**/
@Schema(description = "")
public String getServiceResourceType() {
return serviceResourceType;
}
public void setServiceResourceType(String serviceResourceType) {
this.serviceResourceType = serviceResourceType;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput serviceType(String serviceType) {
this.serviceType = serviceType;
return this;
}
/**
* Get serviceType
* @return serviceType
**/
@Schema(description = "")
public String getServiceType() {
return serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput status(String status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@Schema(description = "")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput tags(List tags) {
this.tags = tags;
return this;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput addTagsItem(TagForDescribeVpcEndpointServicesOutput tagsItem) {
if (this.tags == null) {
this.tags = new ArrayList();
}
this.tags.add(tagsItem);
return this;
}
/**
* Get tags
* @return tags
**/
@Valid
@Schema(description = "")
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* Get updateTime
* @return updateTime
**/
@Schema(description = "")
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput wildcardDomainEnabled(String wildcardDomainEnabled) {
this.wildcardDomainEnabled = wildcardDomainEnabled;
return this;
}
/**
* Get wildcardDomainEnabled
* @return wildcardDomainEnabled
**/
@Schema(description = "")
public String getWildcardDomainEnabled() {
return wildcardDomainEnabled;
}
public void setWildcardDomainEnabled(String wildcardDomainEnabled) {
this.wildcardDomainEnabled = wildcardDomainEnabled;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput zoneIds(List zoneIds) {
this.zoneIds = zoneIds;
return this;
}
public VpcEndpointServiceForDescribeVpcEndpointServicesOutput addZoneIdsItem(String zoneIdsItem) {
if (this.zoneIds == null) {
this.zoneIds = new ArrayList();
}
this.zoneIds.add(zoneIdsItem);
return this;
}
/**
* Get zoneIds
* @return zoneIds
**/
@Schema(description = "")
public List getZoneIds() {
return zoneIds;
}
public void setZoneIds(List zoneIds) {
this.zoneIds = zoneIds;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VpcEndpointServiceForDescribeVpcEndpointServicesOutput vpcEndpointServiceForDescribeVpcEndpointServicesOutput = (VpcEndpointServiceForDescribeVpcEndpointServicesOutput) o;
return Objects.equals(this.autoAcceptEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.autoAcceptEnabled) &&
Objects.equals(this.billingType, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.billingType) &&
Objects.equals(this.businessStatus, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.businessStatus) &&
Objects.equals(this.creationTime, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.creationTime) &&
Objects.equals(this.description, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.description) &&
Objects.equals(this.ipAddressVersions, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.ipAddressVersions) &&
Objects.equals(this.payer, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.payer) &&
Objects.equals(this.privateDNSEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.privateDNSEnabled) &&
Objects.equals(this.privateDNSName, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.privateDNSName) &&
Objects.equals(this.privateDNSNameConfiguration, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.privateDNSNameConfiguration) &&
Objects.equals(this.privateDNSType, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.privateDNSType) &&
Objects.equals(this.projectName, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.projectName) &&
Objects.equals(this.serviceDomain, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceDomain) &&
Objects.equals(this.serviceId, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceId) &&
Objects.equals(this.serviceName, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceName) &&
Objects.equals(this.serviceOwner, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceOwner) &&
Objects.equals(this.serviceResourceType, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceResourceType) &&
Objects.equals(this.serviceType, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.serviceType) &&
Objects.equals(this.status, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.status) &&
Objects.equals(this.tags, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.tags) &&
Objects.equals(this.updateTime, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.updateTime) &&
Objects.equals(this.wildcardDomainEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.wildcardDomainEnabled) &&
Objects.equals(this.zoneIds, vpcEndpointServiceForDescribeVpcEndpointServicesOutput.zoneIds);
}
@Override
public int hashCode() {
return Objects.hash(autoAcceptEnabled, billingType, businessStatus, creationTime, description, ipAddressVersions, payer, privateDNSEnabled, privateDNSName, privateDNSNameConfiguration, privateDNSType, projectName, serviceDomain, serviceId, serviceName, serviceOwner, serviceResourceType, serviceType, status, tags, updateTime, wildcardDomainEnabled, zoneIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VpcEndpointServiceForDescribeVpcEndpointServicesOutput {\n");
sb.append(" autoAcceptEnabled: ").append(toIndentedString(autoAcceptEnabled)).append("\n");
sb.append(" billingType: ").append(toIndentedString(billingType)).append("\n");
sb.append(" businessStatus: ").append(toIndentedString(businessStatus)).append("\n");
sb.append(" creationTime: ").append(toIndentedString(creationTime)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" ipAddressVersions: ").append(toIndentedString(ipAddressVersions)).append("\n");
sb.append(" payer: ").append(toIndentedString(payer)).append("\n");
sb.append(" privateDNSEnabled: ").append(toIndentedString(privateDNSEnabled)).append("\n");
sb.append(" privateDNSName: ").append(toIndentedString(privateDNSName)).append("\n");
sb.append(" privateDNSNameConfiguration: ").append(toIndentedString(privateDNSNameConfiguration)).append("\n");
sb.append(" privateDNSType: ").append(toIndentedString(privateDNSType)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" serviceDomain: ").append(toIndentedString(serviceDomain)).append("\n");
sb.append(" serviceId: ").append(toIndentedString(serviceId)).append("\n");
sb.append(" serviceName: ").append(toIndentedString(serviceName)).append("\n");
sb.append(" serviceOwner: ").append(toIndentedString(serviceOwner)).append("\n");
sb.append(" serviceResourceType: ").append(toIndentedString(serviceResourceType)).append("\n");
sb.append(" serviceType: ").append(toIndentedString(serviceType)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
sb.append(" updateTime: ").append(toIndentedString(updateTime)).append("\n");
sb.append(" wildcardDomainEnabled: ").append(toIndentedString(wildcardDomainEnabled)).append("\n");
sb.append(" zoneIds: ").append(toIndentedString(zoneIds)).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 ");
}
}