All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.privatelink.model.VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show newest version
/*
 * 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.PrivateDNSNameConfigurationForDescribeVpcEndpointServicesByEndUserOutput;
import com.volcengine.privatelink.model.TagForDescribeVpcEndpointServicesByEndUserOutput;
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;
/**
 * VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput
 */


public class VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput {
  @SerializedName("AutoAcceptEnabled")
  private Boolean autoAcceptEnabled = null;

  @SerializedName("CreationTime")
  private String creationTime = null;

  @SerializedName("Description")
  private String description = null;

  @SerializedName("PrivateDNSEnabled")
  private Boolean privateDNSEnabled = null;

  @SerializedName("PrivateDNSName")
  private String privateDNSName = null;

  @SerializedName("PrivateDNSNameConfiguration")
  private PrivateDNSNameConfigurationForDescribeVpcEndpointServicesByEndUserOutput privateDNSNameConfiguration = 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("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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput privateDNSNameConfiguration(PrivateDNSNameConfigurationForDescribeVpcEndpointServicesByEndUserOutput privateDNSNameConfiguration) {
    this.privateDNSNameConfiguration = privateDNSNameConfiguration;
    return this;
  }

   /**
   * Get privateDNSNameConfiguration
   * @return privateDNSNameConfiguration
  **/
  @Valid
  @Schema(description = "")
  public PrivateDNSNameConfigurationForDescribeVpcEndpointServicesByEndUserOutput getPrivateDNSNameConfiguration() {
    return privateDNSNameConfiguration;
  }

  public void setPrivateDNSNameConfiguration(PrivateDNSNameConfigurationForDescribeVpcEndpointServicesByEndUserOutput privateDNSNameConfiguration) {
    this.privateDNSNameConfiguration = privateDNSNameConfiguration;
  }

  public VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput tags(List tags) {
    this.tags = tags;
    return this;
  }

  public VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput addTagsItem(TagForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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 VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput zoneIds(List zoneIds) {
    this.zoneIds = zoneIds;
    return this;
  }

  public VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput 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;
    }
    VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput = (VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput) o;
    return Objects.equals(this.autoAcceptEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.autoAcceptEnabled) &&
        Objects.equals(this.creationTime, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.creationTime) &&
        Objects.equals(this.description, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.description) &&
        Objects.equals(this.privateDNSEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.privateDNSEnabled) &&
        Objects.equals(this.privateDNSName, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.privateDNSName) &&
        Objects.equals(this.privateDNSNameConfiguration, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.privateDNSNameConfiguration) &&
        Objects.equals(this.projectName, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.projectName) &&
        Objects.equals(this.serviceDomain, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.serviceDomain) &&
        Objects.equals(this.serviceId, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.serviceId) &&
        Objects.equals(this.serviceName, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.serviceName) &&
        Objects.equals(this.serviceResourceType, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.serviceResourceType) &&
        Objects.equals(this.serviceType, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.serviceType) &&
        Objects.equals(this.status, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.status) &&
        Objects.equals(this.tags, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.tags) &&
        Objects.equals(this.updateTime, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.updateTime) &&
        Objects.equals(this.wildcardDomainEnabled, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.wildcardDomainEnabled) &&
        Objects.equals(this.zoneIds, vpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput.zoneIds);
  }

  @Override
  public int hashCode() {
    return Objects.hash(autoAcceptEnabled, creationTime, description, privateDNSEnabled, privateDNSName, privateDNSNameConfiguration, projectName, serviceDomain, serviceId, serviceName, serviceResourceType, serviceType, status, tags, updateTime, wildcardDomainEnabled, zoneIds);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class VpcEndpointServiceForDescribeVpcEndpointServicesByEndUserOutput {\n");
    
    sb.append("    autoAcceptEnabled: ").append(toIndentedString(autoAcceptEnabled)).append("\n");
    sb.append("    creationTime: ").append(toIndentedString(creationTime)).append("\n");
    sb.append("    description: ").append(toIndentedString(description)).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("    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("    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    ");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy