Interface ListSourcesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSourcesResponse,ListSourcesResponse.Builder
public interface ListSourcesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Token to retrieve the next page of results, or empty if there are no more results.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token to retrieve the next page of results, or empty if there are no more results.SourcegetSources(int index)Sources belonging to the requested parent.intgetSourcesCount()Sources belonging to the requested parent.List<Source>getSourcesList()Sources belonging to the requested parent.SourceOrBuildergetSourcesOrBuilder(int index)Sources belonging to the requested parent.List<? extends SourceOrBuilder>getSourcesOrBuilderList()Sources belonging to the requested parent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSourcesList
List<Source> getSourcesList()
Sources belonging to the requested parent.
repeated .google.cloud.securitycenter.v1p1beta1.Source sources = 1;
-
getSources
Source getSources(int index)
Sources belonging to the requested parent.
repeated .google.cloud.securitycenter.v1p1beta1.Source sources = 1;
-
getSourcesCount
int getSourcesCount()
Sources belonging to the requested parent.
repeated .google.cloud.securitycenter.v1p1beta1.Source sources = 1;
-
getSourcesOrBuilderList
List<? extends SourceOrBuilder> getSourcesOrBuilderList()
Sources belonging to the requested parent.
repeated .google.cloud.securitycenter.v1p1beta1.Source sources = 1;
-
getSourcesOrBuilder
SourceOrBuilder getSourcesOrBuilder(int index)
Sources belonging to the requested parent.
repeated .google.cloud.securitycenter.v1p1beta1.Source sources = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results.
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.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-