nl.topicus.jdbc.shaded.com.google.api.EndpointOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/endpoint.proto
package nl.topicus.jdbc.shaded.com.google.api;
public interface EndpointOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.Endpoint)
nl.topicus.jdbc.shaded.com.google.protobuf.MessageOrBuilder {
/**
*
* The canonical name of this endpoint.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* The canonical name of this endpoint.
*
*
* string name = 1;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getNameBytes();
/**
*
* DEPRECATED: This field is no longer supported. Instead of using aliases,
* please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intented
* alias.
* Additional names that this endpoint will be hosted on.
*
*
* repeated string aliases = 2;
*/
java.util.List
getAliasesList();
/**
*
* DEPRECATED: This field is no longer supported. Instead of using aliases,
* please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intented
* alias.
* Additional names that this endpoint will be hosted on.
*
*
* repeated string aliases = 2;
*/
int getAliasesCount();
/**
*
* DEPRECATED: This field is no longer supported. Instead of using aliases,
* please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intented
* alias.
* Additional names that this endpoint will be hosted on.
*
*
* repeated string aliases = 2;
*/
java.lang.String getAliases(int index);
/**
*
* DEPRECATED: This field is no longer supported. Instead of using aliases,
* please specify multiple [google.api.Endpoint][google.api.Endpoint] for each of the intented
* alias.
* Additional names that this endpoint will be hosted on.
*
*
* repeated string aliases = 2;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getAliasesBytes(int index);
/**
*
* The list of APIs served by this endpoint.
*
*
* repeated string apis = 3;
*/
java.util.List
getApisList();
/**
*
* The list of APIs served by this endpoint.
*
*
* repeated string apis = 3;
*/
int getApisCount();
/**
*
* The list of APIs served by this endpoint.
*
*
* repeated string apis = 3;
*/
java.lang.String getApis(int index);
/**
*
* The list of APIs served by this endpoint.
*
*
* repeated string apis = 3;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getApisBytes(int index);
/**
*
* The list of features enabled on this endpoint.
*
*
* repeated string features = 4;
*/
java.util.List
getFeaturesList();
/**
*
* The list of features enabled on this endpoint.
*
*
* repeated string features = 4;
*/
int getFeaturesCount();
/**
*
* The list of features enabled on this endpoint.
*
*
* repeated string features = 4;
*/
java.lang.String getFeatures(int index);
/**
*
* The list of features enabled on this endpoint.
*
*
* repeated string features = 4;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getFeaturesBytes(int index);
/**
*
* The specification of an Internet routable address of API frontend that will
* handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
* It should be either a valid IPv4 address or a fully-qualified domain name.
* For example, "8.8.8.8" or "myservice.appspot.com".
*
*
* string target = 101;
*/
java.lang.String getTarget();
/**
*
* The specification of an Internet routable address of API frontend that will
* handle requests to this [API Endpoint](https://cloud.google.com/apis/design/glossary).
* It should be either a valid IPv4 address or a fully-qualified domain name.
* For example, "8.8.8.8" or "myservice.appspot.com".
*
*
* string target = 101;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getTargetBytes();
/**
*
* Allowing
* [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
* cross-domain traffic, would allow the backends served from this endpoint to
* receive and respond to HTTP OPTIONS requests. The response will be used by
* the browser to determine whether the subsequent cross-origin request is
* allowed to proceed.
*
*
* bool allow_cors = 5;
*/
boolean getAllowCors();
}