OracleInitialLoadSettings¶
- 
class 
oci.database_migration.models.OracleInitialLoadSettings(**kwargs)¶ Bases:
objectOptional settings for Data Pump Export and Import jobs
Attributes
JOB_MODE_FULLA constant which can be used with the job_mode property of a OracleInitialLoadSettings. JOB_MODE_SCHEMAA constant which can be used with the job_mode property of a OracleInitialLoadSettings. JOB_MODE_TABLEA constant which can be used with the job_mode property of a OracleInitialLoadSettings. JOB_MODE_TABLESPACEA constant which can be used with the job_mode property of a OracleInitialLoadSettings. JOB_MODE_TRANSPORTABLEA constant which can be used with the job_mode property of a OracleInitialLoadSettings. data_pump_parametersGets the data_pump_parameters of this OracleInitialLoadSettings. export_directory_objectGets the export_directory_object of this OracleInitialLoadSettings. import_directory_objectGets the import_directory_object of this OracleInitialLoadSettings. job_mode[Required] Gets the job_mode of this OracleInitialLoadSettings. metadata_remapsGets the metadata_remaps of this OracleInitialLoadSettings. tablespace_detailsGets the tablespace_details of this OracleInitialLoadSettings. Methods
__init__(**kwargs)Initializes a new OracleInitialLoadSettings object with values from keyword arguments. - 
JOB_MODE_FULL= 'FULL'¶ A constant which can be used with the job_mode property of a OracleInitialLoadSettings. This constant has a value of “FULL”
- 
JOB_MODE_SCHEMA= 'SCHEMA'¶ A constant which can be used with the job_mode property of a OracleInitialLoadSettings. This constant has a value of “SCHEMA”
- 
JOB_MODE_TABLE= 'TABLE'¶ A constant which can be used with the job_mode property of a OracleInitialLoadSettings. This constant has a value of “TABLE”
- 
JOB_MODE_TABLESPACE= 'TABLESPACE'¶ A constant which can be used with the job_mode property of a OracleInitialLoadSettings. This constant has a value of “TABLESPACE”
- 
JOB_MODE_TRANSPORTABLE= 'TRANSPORTABLE'¶ A constant which can be used with the job_mode property of a OracleInitialLoadSettings. This constant has a value of “TRANSPORTABLE”
- 
__init__(**kwargs)¶ Initializes a new OracleInitialLoadSettings object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - data_pump_parameters (oci.database_migration.models.DataPumpParameters) – The value to assign to the data_pump_parameters property of this OracleInitialLoadSettings.
 - tablespace_details (oci.database_migration.models.TargetTypeTablespaceDetails) – The value to assign to the tablespace_details property of this OracleInitialLoadSettings.
 - export_directory_object (oci.database_migration.models.DirectoryObject) – The value to assign to the export_directory_object property of this OracleInitialLoadSettings.
 - import_directory_object (oci.database_migration.models.DirectoryObject) – The value to assign to the import_directory_object property of this OracleInitialLoadSettings.
 - job_mode (str) – The value to assign to the job_mode property of this OracleInitialLoadSettings. Allowed values for this property are: “FULL”, “SCHEMA”, “TABLE”, “TABLESPACE”, “TRANSPORTABLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
 - metadata_remaps (list[oci.database_migration.models.MetadataRemap]) – The value to assign to the metadata_remaps property of this OracleInitialLoadSettings.
 
- 
data_pump_parameters¶ Gets the data_pump_parameters of this OracleInitialLoadSettings.
Returns: The data_pump_parameters of this OracleInitialLoadSettings. Return type: oci.database_migration.models.DataPumpParameters 
- 
export_directory_object¶ Gets the export_directory_object of this OracleInitialLoadSettings.
Returns: The export_directory_object of this OracleInitialLoadSettings. Return type: oci.database_migration.models.DirectoryObject 
- 
import_directory_object¶ Gets the import_directory_object of this OracleInitialLoadSettings.
Returns: The import_directory_object of this OracleInitialLoadSettings. Return type: oci.database_migration.models.DirectoryObject 
- 
job_mode¶ [Required] Gets the job_mode of this OracleInitialLoadSettings. Oracle Job Mode
Allowed values for this property are: “FULL”, “SCHEMA”, “TABLE”, “TABLESPACE”, “TRANSPORTABLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The job_mode of this OracleInitialLoadSettings. Return type: str 
- 
metadata_remaps¶ Gets the metadata_remaps of this OracleInitialLoadSettings. Defines remapping to be applied to objects as they are processed.
Returns: The metadata_remaps of this OracleInitialLoadSettings. Return type: list[oci.database_migration.models.MetadataRemap] 
- 
tablespace_details¶ Gets the tablespace_details of this OracleInitialLoadSettings.
Returns: The tablespace_details of this OracleInitialLoadSettings. Return type: oci.database_migration.models.TargetTypeTablespaceDetails 
-