Interface ListScanRunsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListScanRunsResponse
,ListScanRunsResponse.Builder
public interface ListScanRunsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.ScanRun
getScanRuns(int index)
The list of ScanRuns returned.int
getScanRunsCount()
The list of ScanRuns returned.List<ScanRun>
getScanRunsList()
The list of ScanRuns returned.ScanRunOrBuilder
getScanRunsOrBuilder(int index)
The list of ScanRuns returned.List<? extends ScanRunOrBuilder>
getScanRunsOrBuilderList()
The list of ScanRuns returned.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getScanRunsList
List<ScanRun> getScanRunsList()
The list of ScanRuns returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanRun scan_runs = 1;
-
getScanRuns
ScanRun getScanRuns(int index)
The list of ScanRuns returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanRun scan_runs = 1;
-
getScanRunsCount
int getScanRunsCount()
The list of ScanRuns returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanRun scan_runs = 1;
-
getScanRunsOrBuilderList
List<? extends ScanRunOrBuilder> getScanRunsOrBuilderList()
The list of ScanRuns returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanRun scan_runs = 1;
-
getScanRunsOrBuilder
ScanRunOrBuilder getScanRunsOrBuilder(int index)
The list of ScanRuns returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanRun scan_runs = 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.
-
-