Interface LocationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocationMetadata
,LocationMetadata.Builder
public interface LocationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsAvailableZones(String key)
The set of available Google Distributed Cloud Edge zones in the location.Map<String,ZoneMetadata>
getAvailableZones()
Deprecated.int
getAvailableZonesCount()
The set of available Google Distributed Cloud Edge zones in the location.Map<String,ZoneMetadata>
getAvailableZonesMap()
The set of available Google Distributed Cloud Edge zones in the location.ZoneMetadata
getAvailableZonesOrDefault(String key, ZoneMetadata defaultValue)
The set of available Google Distributed Cloud Edge zones in the location.ZoneMetadata
getAvailableZonesOrThrow(String key)
The set of available Google Distributed Cloud Edge zones in the location.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAvailableZonesCount
int getAvailableZonesCount()
The set of available Google Distributed Cloud Edge zones in the location. The map is keyed by the lowercase ID of each zone.
map<string, .google.cloud.edgecontainer.v1.ZoneMetadata> available_zones = 1;
-
containsAvailableZones
boolean containsAvailableZones(String key)
The set of available Google Distributed Cloud Edge zones in the location. The map is keyed by the lowercase ID of each zone.
map<string, .google.cloud.edgecontainer.v1.ZoneMetadata> available_zones = 1;
-
getAvailableZones
@Deprecated Map<String,ZoneMetadata> getAvailableZones()
Deprecated.UsegetAvailableZonesMap()
instead.
-
getAvailableZonesMap
Map<String,ZoneMetadata> getAvailableZonesMap()
The set of available Google Distributed Cloud Edge zones in the location. The map is keyed by the lowercase ID of each zone.
map<string, .google.cloud.edgecontainer.v1.ZoneMetadata> available_zones = 1;
-
getAvailableZonesOrDefault
ZoneMetadata getAvailableZonesOrDefault(String key, ZoneMetadata defaultValue)
The set of available Google Distributed Cloud Edge zones in the location. The map is keyed by the lowercase ID of each zone.
map<string, .google.cloud.edgecontainer.v1.ZoneMetadata> available_zones = 1;
-
getAvailableZonesOrThrow
ZoneMetadata getAvailableZonesOrThrow(String key)
The set of available Google Distributed Cloud Edge zones in the location. The map is keyed by the lowercase ID of each zone.
map<string, .google.cloud.edgecontainer.v1.ZoneMetadata> available_zones = 1;
-
-