Interface MetadataExchangeResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MetadataExchangeResponse
,MetadataExchangeResponse.Builder
public interface MetadataExchangeResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getError()
Optional.com.google.protobuf.ByteString
getErrorBytes()
Optional.MetadataExchangeResponse.ResponseCode
getResponseCode()
Response code.int
getResponseCodeValue()
Response code.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResponseCodeValue
int getResponseCodeValue()
Response code.
.google.cloud.alloydb.connectors.v1alpha.MetadataExchangeResponse.ResponseCode response_code = 1;
- Returns:
- The enum numeric value on the wire for responseCode.
-
getResponseCode
MetadataExchangeResponse.ResponseCode getResponseCode()
Response code.
.google.cloud.alloydb.connectors.v1alpha.MetadataExchangeResponse.ResponseCode response_code = 1;
- Returns:
- The responseCode.
-
getError
String getError()
Optional. Error message.
string error = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The error.
-
getErrorBytes
com.google.protobuf.ByteString getErrorBytes()
Optional. Error message.
string error = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for error.
-
-