istio.v1.auth.IstioCertificateResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ca.proto
// Protobuf Java Version: 3.25.1
package istio.v1.auth;
public interface IstioCertificateResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:istio.v1.auth.IstioCertificateResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* PEM-encoded certificate chain.
* The leaf cert is the first element, and the root cert is the last element.
*
*
* repeated string cert_chain = 1;
* @return A list containing the certChain.
*/
java.util.List
getCertChainList();
/**
*
* PEM-encoded certificate chain.
* The leaf cert is the first element, and the root cert is the last element.
*
*
* repeated string cert_chain = 1;
* @return The count of certChain.
*/
int getCertChainCount();
/**
*
* PEM-encoded certificate chain.
* The leaf cert is the first element, and the root cert is the last element.
*
*
* repeated string cert_chain = 1;
* @param index The index of the element to return.
* @return The certChain at the given index.
*/
java.lang.String getCertChain(int index);
/**
*
* PEM-encoded certificate chain.
* The leaf cert is the first element, and the root cert is the last element.
*
*
* repeated string cert_chain = 1;
* @param index The index of the value to return.
* @return The bytes of the certChain at the given index.
*/
com.google.protobuf.ByteString
getCertChainBytes(int index);
}