ValidateDatabaseToolsConnectionResult¶
- 
class oci.database_tools.models.ValidateDatabaseToolsConnectionResult(**kwargs)¶
- Bases: - object- Connection validation result. - Attributes - TYPE_GENERIC_JDBC- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. - TYPE_MYSQL- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. - TYPE_ORACLE_DATABASE- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. - TYPE_POSTGRESQL- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. - action- Gets the action of this ValidateDatabaseToolsConnectionResult. - cause- Gets the cause of this ValidateDatabaseToolsConnectionResult. - code- [Required] Gets the code of this ValidateDatabaseToolsConnectionResult. - message- [Required] Gets the message of this ValidateDatabaseToolsConnectionResult. - type- [Required] Gets the type of this ValidateDatabaseToolsConnectionResult. - Methods - __init__(**kwargs)- Initializes a new ValidateDatabaseToolsConnectionResult object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
TYPE_GENERIC_JDBC= 'GENERIC_JDBC'¶
- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. This constant has a value of “GENERIC_JDBC” 
 - 
TYPE_MYSQL= 'MYSQL'¶
- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. This constant has a value of “MYSQL” 
 - 
TYPE_ORACLE_DATABASE= 'ORACLE_DATABASE'¶
- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. This constant has a value of “ORACLE_DATABASE” 
 - 
TYPE_POSTGRESQL= 'POSTGRESQL'¶
- A constant which can be used with the type property of a ValidateDatabaseToolsConnectionResult. This constant has a value of “POSTGRESQL” 
 - 
__init__(**kwargs)¶
- Initializes a new ValidateDatabaseToolsConnectionResult object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - ValidateDatabaseToolsConnectionOracleDatabaseResult
- ValidateDatabaseToolsConnectionMySqlResult
- ValidateDatabaseToolsConnectionPostgresqlResult
 - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - type (str) – The value to assign to the type property of this ValidateDatabaseToolsConnectionResult. Allowed values for this property are: “ORACLE_DATABASE”, “MYSQL”, “POSTGRESQL”, “GENERIC_JDBC”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- code (str) – The value to assign to the code property of this ValidateDatabaseToolsConnectionResult.
- message (str) – The value to assign to the message property of this ValidateDatabaseToolsConnectionResult.
- cause (str) – The value to assign to the cause property of this ValidateDatabaseToolsConnectionResult.
- action (str) – The value to assign to the action property of this ValidateDatabaseToolsConnectionResult.
 
 - 
action¶
- Gets the action of this ValidateDatabaseToolsConnectionResult. A human-readable message that suggests a remedial action to resolve the validation error. - Returns: - The action of this ValidateDatabaseToolsConnectionResult. - Return type: - str 
 - 
cause¶
- Gets the cause of this ValidateDatabaseToolsConnectionResult. A human-readable message that describes possible causes for the validation error. - Returns: - The cause of this ValidateDatabaseToolsConnectionResult. - Return type: - str 
 - 
code¶
- [Required] Gets the code of this ValidateDatabaseToolsConnectionResult. A short code that defines the result of the validation, meant for programmatic parsing. The value OK indicates that the validation was successful. - Returns: - The code of this ValidateDatabaseToolsConnectionResult. - Return type: - str 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
message¶
- [Required] Gets the message of this ValidateDatabaseToolsConnectionResult. A human-readable message that describes the result of the validation. - Returns: - The message of this ValidateDatabaseToolsConnectionResult. - Return type: - str 
 - 
type¶
- [Required] Gets the type of this ValidateDatabaseToolsConnectionResult. The Database Tools connection type. - Allowed values for this property are: “ORACLE_DATABASE”, “MYSQL”, “POSTGRESQL”, “GENERIC_JDBC”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The type of this ValidateDatabaseToolsConnectionResult. - Return type: - str 
 
-