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()
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.ScanConfig
getScanConfigs(int index)
The list of ScanConfigs returned.int
getScanConfigsCount()
The list of ScanConfigs returned.List<ScanConfig>
getScanConfigsList()
The list of ScanConfigs returned.ScanConfigOrBuilder
getScanConfigsOrBuilder(int index)
The list of ScanConfigs returned.List<? extends ScanConfigOrBuilder>
getScanConfigsOrBuilderList()
The list of ScanConfigs returned.-
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 list of ScanConfigs returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanConfig scan_configs = 1;
-
getScanConfigs
ScanConfig getScanConfigs(int index)
The list of ScanConfigs returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanConfig scan_configs = 1;
-
getScanConfigsCount
int getScanConfigsCount()
The list of ScanConfigs returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanConfig scan_configs = 1;
-
getScanConfigsOrBuilderList
List<? extends ScanConfigOrBuilder> getScanConfigsOrBuilderList()
The list of ScanConfigs returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanConfig scan_configs = 1;
-
getScanConfigsOrBuilder
ScanConfigOrBuilder getScanConfigsOrBuilder(int index)
The list of ScanConfigs returned.
repeated .google.cloud.websecurityscanner.v1alpha.ScanConfig scan_configs = 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.
-
-