Package com.google.cloud.apigateway.v1
Interface ListApiConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListApiConfigsResponse,ListApiConfigsResponse.Builder
public interface ListApiConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiConfiggetApiConfigs(int index)API Configs.intgetApiConfigsCount()API Configs.List<ApiConfig>getApiConfigsList()API Configs.ApiConfigOrBuildergetApiConfigsOrBuilder(int index)API Configs.List<? extends ApiConfigOrBuilder>getApiConfigsOrBuilderList()API Configs.StringgetNextPageToken()Next page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()Next page token.StringgetUnreachableLocations(int index)Locations that could not be reached.com.google.protobuf.ByteStringgetUnreachableLocationsBytes(int index)Locations that could not be reached.intgetUnreachableLocationsCount()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
-
getApiConfigsList
List<ApiConfig> getApiConfigsList()
API Configs.
repeated .google.cloud.apigateway.v1.ApiConfig api_configs = 1;
-
getApiConfigs
ApiConfig getApiConfigs(int index)
API Configs.
repeated .google.cloud.apigateway.v1.ApiConfig api_configs = 1;
-
getApiConfigsCount
int getApiConfigsCount()
API Configs.
repeated .google.cloud.apigateway.v1.ApiConfig api_configs = 1;
-
getApiConfigsOrBuilderList
List<? extends ApiConfigOrBuilder> getApiConfigsOrBuilderList()
API Configs.
repeated .google.cloud.apigateway.v1.ApiConfig api_configs = 1;
-
getApiConfigsOrBuilder
ApiConfigOrBuilder getApiConfigsOrBuilder(int index)
API Configs.
repeated .google.cloud.apigateway.v1.ApiConfig api_configs = 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.
-
-