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

com.databricks.sdk.service.provisioning.GcpVpcEndpointInfo Maven / Gradle / Ivy

There is a newer version: 0.35.0
Show newest version
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.provisioning;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;

/** The Google Cloud specific information for this Private Service Connect endpoint. */
@Generated
public class GcpVpcEndpointInfo {
  /** Region of the PSC endpoint. */
  @JsonProperty("endpoint_region")
  private String endpointRegion;

  /** The Google Cloud project ID of the VPC network where the PSC connection resides. */
  @JsonProperty("project_id")
  private String projectId;

  /** The unique ID of this PSC connection. */
  @JsonProperty("psc_connection_id")
  private String pscConnectionId;

  /** The name of the PSC endpoint in the Google Cloud project. */
  @JsonProperty("psc_endpoint_name")
  private String pscEndpointName;

  /** The service attachment this PSC connection connects to. */
  @JsonProperty("service_attachment_id")
  private String serviceAttachmentId;

  public GcpVpcEndpointInfo setEndpointRegion(String endpointRegion) {
    this.endpointRegion = endpointRegion;
    return this;
  }

  public String getEndpointRegion() {
    return endpointRegion;
  }

  public GcpVpcEndpointInfo setProjectId(String projectId) {
    this.projectId = projectId;
    return this;
  }

  public String getProjectId() {
    return projectId;
  }

  public GcpVpcEndpointInfo setPscConnectionId(String pscConnectionId) {
    this.pscConnectionId = pscConnectionId;
    return this;
  }

  public String getPscConnectionId() {
    return pscConnectionId;
  }

  public GcpVpcEndpointInfo setPscEndpointName(String pscEndpointName) {
    this.pscEndpointName = pscEndpointName;
    return this;
  }

  public String getPscEndpointName() {
    return pscEndpointName;
  }

  public GcpVpcEndpointInfo setServiceAttachmentId(String serviceAttachmentId) {
    this.serviceAttachmentId = serviceAttachmentId;
    return this;
  }

  public String getServiceAttachmentId() {
    return serviceAttachmentId;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    GcpVpcEndpointInfo that = (GcpVpcEndpointInfo) o;
    return Objects.equals(endpointRegion, that.endpointRegion)
        && Objects.equals(projectId, that.projectId)
        && Objects.equals(pscConnectionId, that.pscConnectionId)
        && Objects.equals(pscEndpointName, that.pscEndpointName)
        && Objects.equals(serviceAttachmentId, that.serviceAttachmentId);
  }

  @Override
  public int hashCode() {
    return Objects.hash(
        endpointRegion, projectId, pscConnectionId, pscEndpointName, serviceAttachmentId);
  }

  @Override
  public String toString() {
    return new ToStringer(GcpVpcEndpointInfo.class)
        .add("endpointRegion", endpointRegion)
        .add("projectId", projectId)
        .add("pscConnectionId", pscConnectionId)
        .add("pscEndpointName", pscEndpointName)
        .add("serviceAttachmentId", serviceAttachmentId)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy