Package com.google.cloud.dataproc.v1
Interface ListClustersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListClustersResponse
,ListClustersResponse.Builder
public interface ListClustersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cluster
getClusters(int index)
Output only.int
getClustersCount()
Output only.List<Cluster>
getClustersList()
Output only.ClusterOrBuilder
getClustersOrBuilder(int index)
Output only.List<? extends ClusterOrBuilder>
getClustersOrBuilderList()
Output only.String
getNextPageToken()
Output only.com.google.protobuf.ByteString
getNextPageTokenBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getClustersList
List<Cluster> getClustersList()
Output only. The clusters in the project.
repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getClusters
Cluster getClusters(int index)
Output only. The clusters in the project.
repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getClustersCount
int getClustersCount()
Output only. The clusters in the project.
repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getClustersOrBuilderList
List<? extends ClusterOrBuilder> getClustersOrBuilderList()
Output only. The clusters in the project.
repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getClustersOrBuilder
ClusterOrBuilder getClustersOrBuilder(int index)
Output only. The clusters in the project.
repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getNextPageToken
String getNextPageToken()
Output only. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent `ListClustersRequest`.
string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Output only. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent `ListClustersRequest`.
string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for nextPageToken.
-
-