com.ibm.etcd.api.MemberOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etcd-java Show documentation
Show all versions of etcd-java Show documentation
etcd3 java client and utilities
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
package com.ibm.etcd.api;
public interface MemberOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.Member)
com.google.protobuf.MessageOrBuilder {
/**
*
* ID is the member ID for this member.
*
*
* uint64 ID = 1;
*/
long getID();
/**
*
* name is the human-readable name of the member. If the member is not started, the name will be an empty string.
*
*
* string name = 2;
*/
java.lang.String getName();
/**
*
* name is the human-readable name of the member. If the member is not started, the name will be an empty string.
*
*
* string name = 2;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* peerURLs is the list of URLs the member exposes to the cluster for communication.
*
*
* repeated string peerURLs = 3;
*/
java.util.List
getPeerURLsList();
/**
*
* peerURLs is the list of URLs the member exposes to the cluster for communication.
*
*
* repeated string peerURLs = 3;
*/
int getPeerURLsCount();
/**
*
* peerURLs is the list of URLs the member exposes to the cluster for communication.
*
*
* repeated string peerURLs = 3;
*/
java.lang.String getPeerURLs(int index);
/**
*
* peerURLs is the list of URLs the member exposes to the cluster for communication.
*
*
* repeated string peerURLs = 3;
*/
com.google.protobuf.ByteString
getPeerURLsBytes(int index);
/**
*
* clientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty.
*
*
* repeated string clientURLs = 4;
*/
java.util.List
getClientURLsList();
/**
*
* clientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty.
*
*
* repeated string clientURLs = 4;
*/
int getClientURLsCount();
/**
*
* clientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty.
*
*
* repeated string clientURLs = 4;
*/
java.lang.String getClientURLs(int index);
/**
*
* clientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty.
*
*
* repeated string clientURLs = 4;
*/
com.google.protobuf.ByteString
getClientURLsBytes(int index);
}