Interface FetchDatabasePropertiesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FetchDatabasePropertiesResponse,FetchDatabasePropertiesResponse.Builder
public interface FetchDatabasePropertiesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsFailoverReplicaAvailable()The availability status of the failover replica.StringgetPrimaryGceZone()The Compute Engine zone that the instance is currently serving from.com.google.protobuf.ByteStringgetPrimaryGceZoneBytes()The Compute Engine zone that the instance is currently serving from.StringgetSecondaryGceZone()The Compute Engine zone that the failover instance is currently serving from for a regional Cloud SQL instance.com.google.protobuf.ByteStringgetSecondaryGceZoneBytes()The Compute Engine zone that the failover instance is currently serving from for a regional Cloud SQL instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPrimaryGceZone
String getPrimaryGceZone()
The Compute Engine zone that the instance is currently serving from.
string primary_gce_zone = 1;- Returns:
- The primaryGceZone.
-
getPrimaryGceZoneBytes
com.google.protobuf.ByteString getPrimaryGceZoneBytes()
The Compute Engine zone that the instance is currently serving from.
string primary_gce_zone = 1;- Returns:
- The bytes for primaryGceZone.
-
getSecondaryGceZone
String getSecondaryGceZone()
The Compute Engine zone that the failover instance is currently serving from for a regional Cloud SQL instance.
string secondary_gce_zone = 2;- Returns:
- The secondaryGceZone.
-
getSecondaryGceZoneBytes
com.google.protobuf.ByteString getSecondaryGceZoneBytes()
The Compute Engine zone that the failover instance is currently serving from for a regional Cloud SQL instance.
string secondary_gce_zone = 2;- Returns:
- The bytes for secondaryGceZone.
-
getIsFailoverReplicaAvailable
boolean getIsFailoverReplicaAvailable()
The availability status of the failover replica. A false status indicates that the failover replica is out of sync. The primary instance can only fail over to the failover replica when the status is true.
bool is_failover_replica_available = 3;- Returns:
- The isFailoverReplicaAvailable.
-
-