com.ibm.etcd.api.MemberAddRequestOrBuilder 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 MemberAddRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.MemberAddRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* peerURLs is the list of URLs the added member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 1;
* @return A list containing the peerURLs.
*/
java.util.List
getPeerURLsList();
/**
*
* peerURLs is the list of URLs the added member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 1;
* @return The count of peerURLs.
*/
int getPeerURLsCount();
/**
*
* peerURLs is the list of URLs the added member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 1;
* @param index The index of the element to return.
* @return The peerURLs at the given index.
*/
java.lang.String getPeerURLs(int index);
/**
*
* peerURLs is the list of URLs the added member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 1;
* @param index The index of the value to return.
* @return The bytes of the peerURLs at the given index.
*/
com.google.protobuf.ByteString
getPeerURLsBytes(int index);
}