UpdateOracleInitialLoadSettings¶
- 
class oci.database_migration.models.UpdateOracleInitialLoadSettings(**kwargs)¶
- Bases: - object- Optional settings for Data Pump Export and Import jobs - Attributes - JOB_MODE_FULL- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. - JOB_MODE_SCHEMA- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. - JOB_MODE_TABLE- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. - JOB_MODE_TABLESPACE- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. - JOB_MODE_TRANSPORTABLE- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. - data_pump_parameters- Gets the data_pump_parameters of this UpdateOracleInitialLoadSettings. - export_directory_object- Gets the export_directory_object of this UpdateOracleInitialLoadSettings. - import_directory_object- Gets the import_directory_object of this UpdateOracleInitialLoadSettings. - job_mode- [Required] Gets the job_mode of this UpdateOracleInitialLoadSettings. - metadata_remaps- Gets the metadata_remaps of this UpdateOracleInitialLoadSettings. - tablespace_details- Gets the tablespace_details of this UpdateOracleInitialLoadSettings. - Methods - __init__(**kwargs)- Initializes a new UpdateOracleInitialLoadSettings object with values from keyword arguments. - 
JOB_MODE_FULL= 'FULL'¶
- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. This constant has a value of “FULL” 
 - 
JOB_MODE_SCHEMA= 'SCHEMA'¶
- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. This constant has a value of “SCHEMA” 
 - 
JOB_MODE_TABLE= 'TABLE'¶
- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. This constant has a value of “TABLE” 
 - 
JOB_MODE_TABLESPACE= 'TABLESPACE'¶
- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. This constant has a value of “TABLESPACE” 
 - 
JOB_MODE_TRANSPORTABLE= 'TRANSPORTABLE'¶
- A constant which can be used with the job_mode property of a UpdateOracleInitialLoadSettings. This constant has a value of “TRANSPORTABLE” 
 - 
__init__(**kwargs)¶
- Initializes a new UpdateOracleInitialLoadSettings 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.UpdateDataPumpParameters) – The value to assign to the data_pump_parameters property of this UpdateOracleInitialLoadSettings.
- tablespace_details (oci.database_migration.models.UpdateTargetTypeTablespaceDetails) – The value to assign to the tablespace_details property of this UpdateOracleInitialLoadSettings.
- export_directory_object (oci.database_migration.models.UpdateDirectoryObject) – The value to assign to the export_directory_object property of this UpdateOracleInitialLoadSettings.
- import_directory_object (oci.database_migration.models.UpdateDirectoryObject) – The value to assign to the import_directory_object property of this UpdateOracleInitialLoadSettings.
- job_mode (str) – The value to assign to the job_mode property of this UpdateOracleInitialLoadSettings. Allowed values for this property are: “FULL”, “SCHEMA”, “TABLE”, “TABLESPACE”, “TRANSPORTABLE”
- metadata_remaps (list[oci.database_migration.models.MetadataRemap]) – The value to assign to the metadata_remaps property of this UpdateOracleInitialLoadSettings.
 
 - 
data_pump_parameters¶
- Gets the data_pump_parameters of this UpdateOracleInitialLoadSettings. - Returns: - The data_pump_parameters of this UpdateOracleInitialLoadSettings. - Return type: - oci.database_migration.models.UpdateDataPumpParameters 
 - 
export_directory_object¶
- Gets the export_directory_object of this UpdateOracleInitialLoadSettings. - Returns: - The export_directory_object of this UpdateOracleInitialLoadSettings. - Return type: - oci.database_migration.models.UpdateDirectoryObject 
 - 
import_directory_object¶
- Gets the import_directory_object of this UpdateOracleInitialLoadSettings. - Returns: - The import_directory_object of this UpdateOracleInitialLoadSettings. - Return type: - oci.database_migration.models.UpdateDirectoryObject 
 - 
job_mode¶
- [Required] Gets the job_mode of this UpdateOracleInitialLoadSettings. Oracle Job Mode - Allowed values for this property are: “FULL”, “SCHEMA”, “TABLE”, “TABLESPACE”, “TRANSPORTABLE” - Returns: - The job_mode of this UpdateOracleInitialLoadSettings. - Return type: - str 
 - 
metadata_remaps¶
- Gets the metadata_remaps of this UpdateOracleInitialLoadSettings. Defines remapping to be applied to objects as they are processed. - Returns: - The metadata_remaps of this UpdateOracleInitialLoadSettings. - Return type: - list[oci.database_migration.models.MetadataRemap] 
 - 
tablespace_details¶
- Gets the tablespace_details of this UpdateOracleInitialLoadSettings. - Returns: - The tablespace_details of this UpdateOracleInitialLoadSettings. - Return type: - oci.database_migration.models.UpdateTargetTypeTablespaceDetails 
 
-