Package com.google.cloud.recommender.v1
Interface ListInsightsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListInsightsResponse
,ListInsightsResponse.Builder
public interface ListInsightsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Insight
getInsights(int index)
The set of insights for the `parent` resource.int
getInsightsCount()
The set of insights for the `parent` resource.List<Insight>
getInsightsList()
The set of insights for the `parent` resource.InsightOrBuilder
getInsightsOrBuilder(int index)
The set of insights for the `parent` resource.List<? extends InsightOrBuilder>
getInsightsOrBuilderList()
The set of insights for the `parent` resource.String
getNextPageToken()
A token that can be used to request the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be used to request the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInsightsList
List<Insight> getInsightsList()
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1.Insight insights = 1;
-
getInsights
Insight getInsights(int index)
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1.Insight insights = 1;
-
getInsightsCount
int getInsightsCount()
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1.Insight insights = 1;
-
getInsightsOrBuilderList
List<? extends InsightOrBuilder> getInsightsOrBuilderList()
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1.Insight insights = 1;
-
getInsightsOrBuilder
InsightOrBuilder getInsightsOrBuilder(int index)
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1.Insight insights = 1;
-
getNextPageToken
String getNextPageToken()
A token that can be used to request the next page of results. This field is empty if there are no additional results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be used to request the next page of results. This field is empty if there are no additional results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-