Package com.google.cloud.datastream.v1
Interface OracleProfileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OracleProfile,OracleProfile.Builder
public interface OracleProfileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsConnectionAttributes(String key)Connection string attributesMap<String,String>getConnectionAttributes()Deprecated.intgetConnectionAttributesCount()Connection string attributesMap<String,String>getConnectionAttributesMap()Connection string attributesStringgetConnectionAttributesOrDefault(String key, String defaultValue)Connection string attributesStringgetConnectionAttributesOrThrow(String key)Connection string attributesStringgetDatabaseService()Required.com.google.protobuf.ByteStringgetDatabaseServiceBytes()Required.StringgetHostname()Required.com.google.protobuf.ByteStringgetHostnameBytes()Required.StringgetPassword()Required.com.google.protobuf.ByteStringgetPasswordBytes()Required.intgetPort()Port for the Oracle connection, default value is 1521.StringgetUsername()Required.com.google.protobuf.ByteStringgetUsernameBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHostname
String getHostname()
Required. Hostname for the Oracle connection.
string hostname = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The hostname.
-
getHostnameBytes
com.google.protobuf.ByteString getHostnameBytes()
Required. Hostname for the Oracle connection.
string hostname = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for hostname.
-
getPort
int getPort()
Port for the Oracle connection, default value is 1521.
int32 port = 2;- Returns:
- The port.
-
getUsername
String getUsername()
Required. Username for the Oracle connection.
string username = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The username.
-
getUsernameBytes
com.google.protobuf.ByteString getUsernameBytes()
Required. Username for the Oracle connection.
string username = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for username.
-
getPassword
String getPassword()
Required. Password for the Oracle connection.
string password = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The password.
-
getPasswordBytes
com.google.protobuf.ByteString getPasswordBytes()
Required. Password for the Oracle connection.
string password = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for password.
-
getDatabaseService
String getDatabaseService()
Required. Database for the Oracle connection.
string database_service = 5 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The databaseService.
-
getDatabaseServiceBytes
com.google.protobuf.ByteString getDatabaseServiceBytes()
Required. Database for the Oracle connection.
string database_service = 5 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for databaseService.
-
getConnectionAttributesCount
int getConnectionAttributesCount()
Connection string attributes
map<string, string> connection_attributes = 6;
-
containsConnectionAttributes
boolean containsConnectionAttributes(String key)
Connection string attributes
map<string, string> connection_attributes = 6;
-
getConnectionAttributes
@Deprecated Map<String,String> getConnectionAttributes()
Deprecated.UsegetConnectionAttributesMap()instead.
-
getConnectionAttributesMap
Map<String,String> getConnectionAttributesMap()
Connection string attributes
map<string, string> connection_attributes = 6;
-
getConnectionAttributesOrDefault
String getConnectionAttributesOrDefault(String key, String defaultValue)
Connection string attributes
map<string, string> connection_attributes = 6;
-
-