Package com.google.cloud.apigateway.v1
Interface ListGatewaysResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListGatewaysResponse
,ListGatewaysResponse.Builder
public interface ListGatewaysResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Gateway
getGateways(int index)
Gateways.int
getGatewaysCount()
Gateways.List<Gateway>
getGatewaysList()
Gateways.GatewayOrBuilder
getGatewaysOrBuilder(int index)
Gateways.List<? extends GatewayOrBuilder>
getGatewaysOrBuilderList()
Gateways.String
getNextPageToken()
Next page token.com.google.protobuf.ByteString
getNextPageTokenBytes()
Next page token.String
getUnreachableLocations(int index)
Locations that could not be reached.com.google.protobuf.ByteString
getUnreachableLocationsBytes(int index)
Locations that could not be reached.int
getUnreachableLocationsCount()
Locations that could not be reached.List<String>
getUnreachableLocationsList()
Locations that could not be reached.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getGatewaysList
List<Gateway> getGatewaysList()
Gateways.
repeated .google.cloud.apigateway.v1.Gateway gateways = 1;
-
getGateways
Gateway getGateways(int index)
Gateways.
repeated .google.cloud.apigateway.v1.Gateway gateways = 1;
-
getGatewaysCount
int getGatewaysCount()
Gateways.
repeated .google.cloud.apigateway.v1.Gateway gateways = 1;
-
getGatewaysOrBuilderList
List<? extends GatewayOrBuilder> getGatewaysOrBuilderList()
Gateways.
repeated .google.cloud.apigateway.v1.Gateway gateways = 1;
-
getGatewaysOrBuilder
GatewayOrBuilder getGatewaysOrBuilder(int index)
Gateways.
repeated .google.cloud.apigateway.v1.Gateway gateways = 1;
-
getNextPageToken
String getNextPageToken()
Next page token.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Next page token.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableLocationsList
List<String> getUnreachableLocationsList()
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Returns:
- A list containing the unreachableLocations.
-
getUnreachableLocationsCount
int getUnreachableLocationsCount()
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Returns:
- The count of unreachableLocations.
-
getUnreachableLocations
String getUnreachableLocations(int index)
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachableLocations at the given index.
-
getUnreachableLocationsBytes
com.google.protobuf.ByteString getUnreachableLocationsBytes(int index)
Locations that could not be reached.
repeated string unreachable_locations = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachableLocations at the given index.
-
-