Interface ListScanConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListScanConfigsResponse
,ListScanConfigsResponse.Builder
public interface ListScanConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
The next pagination token in the list response.com.google.protobuf.ByteString
getNextPageTokenBytes()
The next pagination token in the list response.ScanConfig
getScanConfigs(int index)
The scan configurations requested.int
getScanConfigsCount()
The scan configurations requested.List<ScanConfig>
getScanConfigsList()
The scan configurations requested.ScanConfigOrBuilder
getScanConfigsOrBuilder(int index)
The scan configurations requested.List<? extends ScanConfigOrBuilder>
getScanConfigsOrBuilderList()
The scan configurations requested.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getScanConfigsList
List<ScanConfig> getScanConfigsList()
The scan configurations requested.
repeated .google.devtools.containeranalysis.v1beta1.ScanConfig scan_configs = 1;
-
getScanConfigs
ScanConfig getScanConfigs(int index)
The scan configurations requested.
repeated .google.devtools.containeranalysis.v1beta1.ScanConfig scan_configs = 1;
-
getScanConfigsCount
int getScanConfigsCount()
The scan configurations requested.
repeated .google.devtools.containeranalysis.v1beta1.ScanConfig scan_configs = 1;
-
getScanConfigsOrBuilderList
List<? extends ScanConfigOrBuilder> getScanConfigsOrBuilderList()
The scan configurations requested.
repeated .google.devtools.containeranalysis.v1beta1.ScanConfig scan_configs = 1;
-
getScanConfigsOrBuilder
ScanConfigOrBuilder getScanConfigsOrBuilder(int index)
The scan configurations requested.
repeated .google.devtools.containeranalysis.v1beta1.ScanConfig scan_configs = 1;
-
getNextPageToken
String getNextPageToken()
The next pagination token in the list response. It should be used as `page_token` for the following request. An empty value means no more results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The next pagination token in the list response. It should be used as `page_token` for the following request. An empty value means no more results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-