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