MySqlDatabaseObject¶
- 
class oci.database_migration.models.MySqlDatabaseObject(**kwargs)¶
- Bases: - object- Database objects to include or exclude from migration - Methods - __init__(**kwargs)- Initializes a new MySqlDatabaseObject object with values from keyword arguments. - Attributes - object_name- [Required] Gets the object_name of this MySqlDatabaseObject. - schema- [Required] Gets the schema of this MySqlDatabaseObject. - type- Gets the type of this MySqlDatabaseObject. - 
__init__(**kwargs)¶
- Initializes a new MySqlDatabaseObject object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - schema (str) – The value to assign to the schema property of this MySqlDatabaseObject.
- object_name (str) – The value to assign to the object_name property of this MySqlDatabaseObject.
- type (str) – The value to assign to the type property of this MySqlDatabaseObject.
 
 - 
object_name¶
- [Required] Gets the object_name of this MySqlDatabaseObject. Name of the object (regular expression is allowed) - Returns: - The object_name of this MySqlDatabaseObject. - Return type: - str 
 - 
schema¶
- [Required] Gets the schema of this MySqlDatabaseObject. Schema of the object (regular expression is allowed) - Returns: - The schema of this MySqlDatabaseObject. - Return type: - str 
 - 
type¶
- Gets the type of this MySqlDatabaseObject. Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded. - Returns: - The type of this MySqlDatabaseObject. - Return type: - str 
 
-