com.ibm.etcd.api.MemberUpdateRequestOrBuilder 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 MemberUpdateRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.MemberUpdateRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* ID is the member ID of the member to update.
*
*
* uint64 ID = 1;
*/
long getID();
/**
*
* peerURLs is the new list of URLs the member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 2;
*/
java.util.List
getPeerURLsList();
/**
*
* peerURLs is the new list of URLs the member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 2;
*/
int getPeerURLsCount();
/**
*
* peerURLs is the new list of URLs the member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 2;
*/
java.lang.String getPeerURLs(int index);
/**
*
* peerURLs is the new list of URLs the member will use to communicate with the cluster.
*
*
* repeated string peerURLs = 2;
*/
com.google.protobuf.ByteString
getPeerURLsBytes(int index);
}