Package com.google.appengine.v1
Interface ListAuthorizedCertificatesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListAuthorizedCertificatesResponse
,ListAuthorizedCertificatesResponse.Builder
public interface ListAuthorizedCertificatesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthorizedCertificate
getCertificates(int index)
The SSL certificates the user is authorized to administer.int
getCertificatesCount()
The SSL certificates the user is authorized to administer.List<AuthorizedCertificate>
getCertificatesList()
The SSL certificates the user is authorized to administer.AuthorizedCertificateOrBuilder
getCertificatesOrBuilder(int index)
The SSL certificates the user is authorized to administer.List<? extends AuthorizedCertificateOrBuilder>
getCertificatesOrBuilderList()
The SSL certificates the user is authorized to administer.String
getNextPageToken()
Continuation token for fetching the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
Continuation token for fetching the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCertificatesList
List<AuthorizedCertificate> getCertificatesList()
The SSL certificates the user is authorized to administer.
repeated .google.appengine.v1.AuthorizedCertificate certificates = 1;
-
getCertificates
AuthorizedCertificate getCertificates(int index)
The SSL certificates the user is authorized to administer.
repeated .google.appengine.v1.AuthorizedCertificate certificates = 1;
-
getCertificatesCount
int getCertificatesCount()
The SSL certificates the user is authorized to administer.
repeated .google.appengine.v1.AuthorizedCertificate certificates = 1;
-
getCertificatesOrBuilderList
List<? extends AuthorizedCertificateOrBuilder> getCertificatesOrBuilderList()
The SSL certificates the user is authorized to administer.
repeated .google.appengine.v1.AuthorizedCertificate certificates = 1;
-
getCertificatesOrBuilder
AuthorizedCertificateOrBuilder getCertificatesOrBuilder(int index)
The SSL certificates the user is authorized to administer.
repeated .google.appengine.v1.AuthorizedCertificate certificates = 1;
-
getNextPageToken
String getNextPageToken()
Continuation token for fetching the next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Continuation token for fetching the next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-