Package com.google.cloud.alloydb.v1beta
Interface UserPasswordOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UserPassword,UserPassword.Builder
public interface UserPasswordOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPassword()The initial password for the user.com.google.protobuf.ByteStringgetPasswordBytes()The initial password for the user.StringgetUser()The database username.com.google.protobuf.ByteStringgetUserBytes()The database username.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUser
String getUser()
The database username.
string user = 1;- Returns:
- The user.
-
getUserBytes
com.google.protobuf.ByteString getUserBytes()
The database username.
string user = 1;- Returns:
- The bytes for user.
-
getPassword
String getPassword()
The initial password for the user.
string password = 2;- Returns:
- The password.
-
getPasswordBytes
com.google.protobuf.ByteString getPasswordBytes()
The initial password for the user.
string password = 2;- Returns:
- The bytes for password.
-
-