Package com.google.container.v1beta1
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)
A list of clusters in the project in the specified zone, or across all ones.int
getClustersCount()
A list of clusters in the project in the specified zone, or across all ones.List<Cluster>
getClustersList()
A list of clusters in the project in the specified zone, or across all ones.ClusterOrBuilder
getClustersOrBuilder(int index)
A list of clusters in the project in the specified zone, or across all ones.List<? extends ClusterOrBuilder>
getClustersOrBuilderList()
A list of clusters in the project in the specified zone, or across all ones.String
getMissingZones(int index)
If any zones are listed here, the list of clusters returned may be missing those zones.com.google.protobuf.ByteString
getMissingZonesBytes(int index)
If any zones are listed here, the list of clusters returned may be missing those zones.int
getMissingZonesCount()
If any zones are listed here, the list of clusters returned may be missing those zones.List<String>
getMissingZonesList()
If any zones are listed here, the list of clusters returned may be missing those zones.-
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()
A list of clusters in the project in the specified zone, or across all ones.
repeated .google.container.v1beta1.Cluster clusters = 1;
-
getClusters
Cluster getClusters(int index)
A list of clusters in the project in the specified zone, or across all ones.
repeated .google.container.v1beta1.Cluster clusters = 1;
-
getClustersCount
int getClustersCount()
A list of clusters in the project in the specified zone, or across all ones.
repeated .google.container.v1beta1.Cluster clusters = 1;
-
getClustersOrBuilderList
List<? extends ClusterOrBuilder> getClustersOrBuilderList()
A list of clusters in the project in the specified zone, or across all ones.
repeated .google.container.v1beta1.Cluster clusters = 1;
-
getClustersOrBuilder
ClusterOrBuilder getClustersOrBuilder(int index)
A list of clusters in the project in the specified zone, or across all ones.
repeated .google.container.v1beta1.Cluster clusters = 1;
-
getMissingZonesList
List<String> getMissingZonesList()
If any zones are listed here, the list of clusters returned may be missing those zones.
repeated string missing_zones = 2;
- Returns:
- A list containing the missingZones.
-
getMissingZonesCount
int getMissingZonesCount()
If any zones are listed here, the list of clusters returned may be missing those zones.
repeated string missing_zones = 2;
- Returns:
- The count of missingZones.
-
getMissingZones
String getMissingZones(int index)
If any zones are listed here, the list of clusters returned may be missing those zones.
repeated string missing_zones = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The missingZones at the given index.
-
getMissingZonesBytes
com.google.protobuf.ByteString getMissingZonesBytes(int index)
If any zones are listed here, the list of clusters returned may be missing those zones.
repeated string missing_zones = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the missingZones at the given index.
-
-