Interface ListDetectorsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDetectorsResponse
,ListDetectorsResponse.Builder
public interface ListDetectorsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Detector
getDetectors(int index)
The detectors from the specified organization.int
getDetectorsCount()
The detectors from the specified organization.List<Detector>
getDetectorsList()
The detectors from the specified organization.DetectorOrBuilder
getDetectorsOrBuilder(int index)
The detectors from the specified organization.List<? extends DetectorOrBuilder>
getDetectorsOrBuilderList()
The detectors from the specified organization.String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDetectorsList
List<Detector> getDetectorsList()
The detectors from the specified organization.
repeated .google.cloud.securitycenter.settings.v1beta1.Detector detectors = 1;
-
getDetectors
Detector getDetectors(int index)
The detectors from the specified organization.
repeated .google.cloud.securitycenter.settings.v1beta1.Detector detectors = 1;
-
getDetectorsCount
int getDetectorsCount()
The detectors from the specified organization.
repeated .google.cloud.securitycenter.settings.v1beta1.Detector detectors = 1;
-
getDetectorsOrBuilderList
List<? extends DetectorOrBuilder> getDetectorsOrBuilderList()
The detectors from the specified organization.
repeated .google.cloud.securitycenter.settings.v1beta1.Detector detectors = 1;
-
getDetectorsOrBuilder
DetectorOrBuilder getDetectorsOrBuilder(int index)
The detectors from the specified organization.
repeated .google.cloud.securitycenter.settings.v1beta1.Detector detectors = 1;
-
getNextPageToken
String getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-