Interface ListCrawledUrlsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCrawledUrlsResponse
,ListCrawledUrlsResponse.Builder
public interface ListCrawledUrlsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CrawledUrl
getCrawledUrls(int index)
The list of CrawledUrls returned.int
getCrawledUrlsCount()
The list of CrawledUrls returned.List<CrawledUrl>
getCrawledUrlsList()
The list of CrawledUrls returned.CrawledUrlOrBuilder
getCrawledUrlsOrBuilder(int index)
The list of CrawledUrls returned.List<? extends CrawledUrlOrBuilder>
getCrawledUrlsOrBuilderList()
The list of CrawledUrls returned.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCrawledUrlsList
List<CrawledUrl> getCrawledUrlsList()
The list of CrawledUrls returned.
repeated .google.cloud.websecurityscanner.v1alpha.CrawledUrl crawled_urls = 1;
-
getCrawledUrls
CrawledUrl getCrawledUrls(int index)
The list of CrawledUrls returned.
repeated .google.cloud.websecurityscanner.v1alpha.CrawledUrl crawled_urls = 1;
-
getCrawledUrlsCount
int getCrawledUrlsCount()
The list of CrawledUrls returned.
repeated .google.cloud.websecurityscanner.v1alpha.CrawledUrl crawled_urls = 1;
-
getCrawledUrlsOrBuilderList
List<? extends CrawledUrlOrBuilder> getCrawledUrlsOrBuilderList()
The list of CrawledUrls returned.
repeated .google.cloud.websecurityscanner.v1alpha.CrawledUrl crawled_urls = 1;
-
getCrawledUrlsOrBuilder
CrawledUrlOrBuilder getCrawledUrlsOrBuilder(int index)
The list of CrawledUrls returned.
repeated .google.cloud.websecurityscanner.v1alpha.CrawledUrl crawled_urls = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-