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 InsightgetInsights(int index)The set of insights for the `parent` resource.intgetInsightsCount()The set of insights for the `parent` resource.List<Insight>getInsightsList()The set of insights for the `parent` resource.InsightOrBuildergetInsightsOrBuilder(int index)The set of insights for the `parent` resource.List<? extends InsightOrBuilder>getInsightsOrBuilderList()The set of insights for the `parent` resource.StringgetNextPageToken()A token that can be used to request the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()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.v1beta1.Insight insights = 1;
-
getInsights
Insight getInsights(int index)
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1beta1.Insight insights = 1;
-
getInsightsCount
int getInsightsCount()
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1beta1.Insight insights = 1;
-
getInsightsOrBuilderList
List<? extends InsightOrBuilder> getInsightsOrBuilderList()
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1beta1.Insight insights = 1;
-
getInsightsOrBuilder
InsightOrBuilder getInsightsOrBuilder(int index)
The set of insights for the `parent` resource.
repeated .google.cloud.recommender.v1beta1.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.
-
-