Interface ListCertificateRevocationListsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCertificateRevocationListsResponse
,ListCertificateRevocationListsResponse.Builder
public interface ListCertificateRevocationListsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateRevocationList
getCertificateRevocationLists(int index)
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].int
getCertificateRevocationListsCount()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].List<CertificateRevocationList>
getCertificateRevocationListsList()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].CertificateRevocationListOrBuilder
getCertificateRevocationListsOrBuilder(int index)
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].List<? extends CertificateRevocationListOrBuilder>
getCertificateRevocationListsOrBuilderList()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].String
getNextPageToken()
A token to retrieve next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve next page of results.String
getUnreachable(int index)
A list of locations (e.g.com.google.protobuf.ByteString
getUnreachableBytes(int index)
A list of locations (e.g.int
getUnreachableCount()
A list of locations (e.g.List<String>
getUnreachableList()
A list of locations (e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCertificateRevocationListsList
List<CertificateRevocationList> getCertificateRevocationListsList()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
repeated .google.cloud.security.privateca.v1.CertificateRevocationList certificate_revocation_lists = 1;
-
getCertificateRevocationLists
CertificateRevocationList getCertificateRevocationLists(int index)
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
repeated .google.cloud.security.privateca.v1.CertificateRevocationList certificate_revocation_lists = 1;
-
getCertificateRevocationListsCount
int getCertificateRevocationListsCount()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
repeated .google.cloud.security.privateca.v1.CertificateRevocationList certificate_revocation_lists = 1;
-
getCertificateRevocationListsOrBuilderList
List<? extends CertificateRevocationListOrBuilder> getCertificateRevocationListsOrBuilderList()
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
repeated .google.cloud.security.privateca.v1.CertificateRevocationList certificate_revocation_lists = 1;
-
getCertificateRevocationListsOrBuilder
CertificateRevocationListOrBuilder getCertificateRevocationListsOrBuilder(int index)
The list of [CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
repeated .google.cloud.security.privateca.v1.CertificateRevocationList certificate_revocation_lists = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass this value in [ListCertificateRevocationListsRequest.next_page_token][] to retrieve the next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results. Pass this value in [ListCertificateRevocationListsRequest.next_page_token][] to retrieve the next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
A list of locations (e.g. "us-west1") that could not be reached.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
A list of locations (e.g. "us-west1") that could not be reached.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
A list of locations (e.g. "us-west1") that could not be reached.
repeated string unreachable = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
A list of locations (e.g. "us-west1") that could not be reached.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-