CreateDirectoryObject¶
- 
class oci.database_migration.models.CreateDirectoryObject(**kwargs)¶
- Bases: - object- Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified. - Methods - __init__(**kwargs)- Initializes a new CreateDirectoryObject object with values from keyword arguments. - Attributes - name- [Required] Gets the name of this CreateDirectoryObject. - path- Gets the path of this CreateDirectoryObject. - 
__init__(**kwargs)¶
- Initializes a new CreateDirectoryObject object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - name (str) – The value to assign to the name property of this CreateDirectoryObject.
- path (str) – The value to assign to the path property of this CreateDirectoryObject.
 
 - 
name¶
- [Required] Gets the name of this CreateDirectoryObject. Name of directory object in database - Returns: - The name of this CreateDirectoryObject. - Return type: - str 
 - 
path¶
- Gets the path of this CreateDirectoryObject. Absolute path of directory on database server - Returns: - The path of this CreateDirectoryObject. - Return type: - str 
 
-