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

is_omit_excluded_table_from_replication Gets the is_omit_excluded_table_from_replication of this DatabaseObject.
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.
  • is_omit_excluded_table_from_replication (bool) – The value to assign to the is_omit_excluded_table_from_replication property of this DatabaseObject.
is_omit_excluded_table_from_replication

Gets the is_omit_excluded_table_from_replication of this DatabaseObject. Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.

Returns:The is_omit_excluded_table_from_replication of this DatabaseObject.
Return type:bool
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