DatabaseConnectionTypeSummary¶
-
class
oci.database_migration.models.DatabaseConnectionTypeSummary(**kwargs)¶ Bases:
objectConnection type e.g. ORACLE and array of technology type objects.
Attributes
CONNECTION_TYPE_MYSQLA constant which can be used with the connection_type property of a DatabaseConnectionTypeSummary. CONNECTION_TYPE_ORACLEA constant which can be used with the connection_type property of a DatabaseConnectionTypeSummary. connection_type[Required] Gets the connection_type of this DatabaseConnectionTypeSummary. technology_typesGets the technology_types of this DatabaseConnectionTypeSummary. Methods
__init__(**kwargs)Initializes a new DatabaseConnectionTypeSummary object with values from keyword arguments. -
CONNECTION_TYPE_MYSQL= 'MYSQL'¶ A constant which can be used with the connection_type property of a DatabaseConnectionTypeSummary. This constant has a value of “MYSQL”
-
CONNECTION_TYPE_ORACLE= 'ORACLE'¶ A constant which can be used with the connection_type property of a DatabaseConnectionTypeSummary. This constant has a value of “ORACLE”
-
__init__(**kwargs)¶ Initializes a new DatabaseConnectionTypeSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - connection_type (str) – The value to assign to the connection_type property of this DatabaseConnectionTypeSummary. Allowed values for this property are: “MYSQL”, “ORACLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- technology_types (list[oci.database_migration.models.DatabaseTechnologyType]) – The value to assign to the technology_types property of this DatabaseConnectionTypeSummary.
-
connection_type¶ [Required] Gets the connection_type of this DatabaseConnectionTypeSummary. Defines the type of connection. For example, ORACLE.
Allowed values for this property are: “MYSQL”, “ORACLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The connection_type of this DatabaseConnectionTypeSummary. Return type: str
-
technology_types¶ Gets the technology_types of this DatabaseConnectionTypeSummary. Array of technology type objects
Returns: The technology_types of this DatabaseConnectionTypeSummary. Return type: list[oci.database_migration.models.DatabaseTechnologyType]
-