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 boolean
containsConnectionAttributes(String key)
Connection string attributesMap<String,String>
getConnectionAttributes()
Deprecated.int
getConnectionAttributesCount()
Connection string attributesMap<String,String>
getConnectionAttributesMap()
Connection string attributesString
getConnectionAttributesOrDefault(String key, String defaultValue)
Connection string attributesString
getConnectionAttributesOrThrow(String key)
Connection string attributesString
getDatabaseService()
Required.com.google.protobuf.ByteString
getDatabaseServiceBytes()
Required.String
getHostname()
Required.com.google.protobuf.ByteString
getHostnameBytes()
Required.String
getPassword()
Required.com.google.protobuf.ByteString
getPasswordBytes()
Required.int
getPort()
Port for the Oracle connection, default value is 1521.String
getUsername()
Required.com.google.protobuf.ByteString
getUsernameBytes()
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;
-
-