ObjectMetadata¶
-
class
oci.database_migration.models.ObjectMetadata(**kwargs)¶ Bases:
objectMetadata of object.
Methods
__init__(**kwargs)Initializes a new ObjectMetadata object with values from keyword arguments. Attributes
object_name_column[Required] Gets the object_name_column of this ObjectMetadata. object_type_columnGets the object_type_column of this ObjectMetadata. object_type_fixedGets the object_type_fixed of this ObjectMetadata. schema_owner_column[Required] Gets the schema_owner_column of this ObjectMetadata. -
__init__(**kwargs)¶ Initializes a new ObjectMetadata object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - schema_owner_column (str) – The value to assign to the schema_owner_column property of this ObjectMetadata.
- object_name_column (str) – The value to assign to the object_name_column property of this ObjectMetadata.
- object_type_fixed (str) – The value to assign to the object_type_fixed property of this ObjectMetadata.
- object_type_column (str) – The value to assign to the object_type_column property of this ObjectMetadata.
-
object_name_column¶ [Required] Gets the object_name_column of this ObjectMetadata. The field that stores the name of the object.
Returns: The object_name_column of this ObjectMetadata. Return type: str
-
object_type_column¶ Gets the object_type_column of this ObjectMetadata. The field that stores the type of the object.
Returns: The object_type_column of this ObjectMetadata. Return type: str
-
object_type_fixed¶ Gets the object_type_fixed of this ObjectMetadata. The field that stores the fixed type of the object.
Returns: The object_type_fixed of this ObjectMetadata. Return type: str
-
schema_owner_column¶ [Required] Gets the schema_owner_column of this ObjectMetadata. The field that stores the owner of the object.
Returns: The schema_owner_column of this ObjectMetadata. Return type: str
-