grpc.global_admin.EndpointOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: global_admin.proto
package grpc.global_admin;
public interface EndpointOrBuilder extends
// @@protoc_insertion_point(interface_extends:global_admin.Endpoint)
com.google.protobuf.MessageOrBuilder {
/**
*
* the name displayed in the Console, e.g. 'us-west-2', 'private-us-west-2', etc.
*
*
* string friendly_name = 1;
* @return The friendlyName.
*/
java.lang.String getFriendlyName();
/**
*
* the name displayed in the Console, e.g. 'us-west-2', 'private-us-west-2', etc.
*
*
* string friendly_name = 1;
* @return The bytes for friendlyName.
*/
com.google.protobuf.ByteString
getFriendlyNameBytes();
/**
*
* domain name for talking to this Endpoint, e.g. `cell-4-us-west-2-1.prod.a.momentohq.com`
*
*
* string domain_name = 2;
* @return The domainName.
*/
java.lang.String getDomainName();
/**
*
* domain name for talking to this Endpoint, e.g. `cell-4-us-west-2-1.prod.a.momentohq.com`
*
*
* string domain_name = 2;
* @return The bytes for domainName.
*/
com.google.protobuf.ByteString
getDomainNameBytes();
/**
*
* AWS region, e.g. `us-west-2`
*
*
* string region = 3;
* @return The region.
*/
java.lang.String getRegion();
/**
*
* AWS region, e.g. `us-west-2`
*
*
* string region = 3;
* @return The bytes for region.
*/
com.google.protobuf.ByteString
getRegionBytes();
}