ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210929 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class CreateDataPumpSettings(object): """ Optional settings for Data Pump Export and Import jobs """ #: A constant which can be used with the job_mode property of a CreateDataPumpSettings. #: This constant has a value of "FULL" JOB_MODE_FULL = "FULL" #: A constant which can be used with the job_mode property of a CreateDataPumpSettings. #: This constant has a value of "SCHEMA" JOB_MODE_SCHEMA = "SCHEMA" #: A constant which can be used with the job_mode property of a CreateDataPumpSettings. #: This constant has a value of "TABLE" JOB_MODE_TABLE = "TABLE" #: A constant which can be used with the job_mode property of a CreateDataPumpSettings. #: This constant has a value of "TABLESPACE" JOB_MODE_TABLESPACE = "TABLESPACE" #: A constant which can be used with the job_mode property of a CreateDataPumpSettings. #: This constant has a value of "TRANSPORTABLE" JOB_MODE_TRANSPORTABLE = "TRANSPORTABLE" def __init__(self, **kwargs): """ Initializes a new CreateDataPumpSettings object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param job_mode: The value to assign to the job_mode property of this CreateDataPumpSettings. Allowed values for this property are: "FULL", "SCHEMA", "TABLE", "TABLESPACE", "TRANSPORTABLE" :type job_mode: str :param data_pump_parameters: The value to assign to the data_pump_parameters property of this CreateDataPumpSettings. :type data_pump_parameters: oci.database_migration.models.CreateDataPumpParameters :param metadata_remaps: The value to assign to the metadata_remaps property of this CreateDataPumpSettings. :type metadata_remaps: list[oci.database_migration.models.MetadataRemap] :param tablespace_details: The value to assign to the tablespace_details property of this CreateDataPumpSettings. :type tablespace_details: oci.database_migration.models.CreateTargetTypeTablespaceDetails :param export_directory_object: The value to assign to the export_directory_object property of this CreateDataPumpSettings. :type export_directory_object: oci.database_migration.models.CreateDirectoryObject :param import_directory_object: The value to assign to the import_directory_object property of this CreateDataPumpSettings. :type import_directory_object: oci.database_migration.models.CreateDirectoryObject """ self.swagger_types = { 'job_mode': 'str', 'data_pump_parameters': 'CreateDataPumpParameters', 'metadata_remaps': 'list[MetadataRemap]', 'tablespace_details': 'CreateTargetTypeTablespaceDetails', 'export_directory_object': 'CreateDirectoryObject', 'import_directory_object': 'CreateDirectoryObject' } self.attribute_map = { 'job_mode': 'jobMode', 'data_pump_parameters': 'dataPumpParameters', 'metadata_remaps': 'metadataRemaps', 'tablespace_details': 'tablespaceDetails', 'export_directory_object': 'exportDirectoryObject', 'import_directory_object': 'importDirectoryObject' } self._job_mode = None self._data_pump_parameters = None self._metadata_remaps = None self._tablespace_details = None self._export_directory_object = None self._import_directory_object = None @property def job_mode(self): """ Gets the job_mode of this CreateDataPumpSettings. Data Pump job mode. Refer to `link text`__ __ https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-data-pump-export-utility.html#GUID-8E497131-6B9B-4CC8-AA50-35F480CAC2C4 Allowed values for this property are: "FULL", "SCHEMA", "TABLE", "TABLESPACE", "TRANSPORTABLE" :return: The job_mode of this CreateDataPumpSettings. :rtype: str """ return self._job_mode @job_mode.setter def job_mode(self, job_mode): """ Sets the job_mode of this CreateDataPumpSettings. Data Pump job mode. Refer to `link text`__ __ https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-data-pump-export-utility.html#GUID-8E497131-6B9B-4CC8-AA50-35F480CAC2C4 :param job_mode: The job_mode of this CreateDataPumpSettings. :type: str """ allowed_values = ["FULL", "SCHEMA", "TABLE", "TABLESPACE", "TRANSPORTABLE"] if not value_allowed_none_or_none_sentinel(job_mode, allowed_values): raise ValueError( f"Invalid value for `job_mode`, must be None or one of {allowed_values}" ) self._job_mode = job_mode @property def data_pump_parameters(self): """ Gets the data_pump_parameters of this CreateDataPumpSettings. :return: The data_pump_parameters of this CreateDataPumpSettings. :rtype: oci.database_migration.models.CreateDataPumpParameters """ return self._data_pump_parameters @data_pump_parameters.setter def data_pump_parameters(self, data_pump_parameters): """ Sets the data_pump_parameters of this CreateDataPumpSettings. :param data_pump_parameters: The data_pump_parameters of this CreateDataPumpSettings. :type: oci.database_migration.models.CreateDataPumpParameters """ self._data_pump_parameters = data_pump_parameters @property def metadata_remaps(self): """ Gets the metadata_remaps of this CreateDataPumpSettings. Defines remapping to be applied to objects as they are processed. Refer to `DATA_REMAP`__ __ https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-E75AAE6F-4EA6-4737-A752-6B62F5E9D460 :return: The metadata_remaps of this CreateDataPumpSettings. :rtype: list[oci.database_migration.models.MetadataRemap] """ return self._metadata_remaps @metadata_remaps.setter def metadata_remaps(self, metadata_remaps): """ Sets the metadata_remaps of this CreateDataPumpSettings. Defines remapping to be applied to objects as they are processed. Refer to `DATA_REMAP`__ __ https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-E75AAE6F-4EA6-4737-A752-6B62F5E9D460 :param metadata_remaps: The metadata_remaps of this CreateDataPumpSettings. :type: list[oci.database_migration.models.MetadataRemap] """ self._metadata_remaps = metadata_remaps @property def tablespace_details(self): """ Gets the tablespace_details of this CreateDataPumpSettings. :return: The tablespace_details of this CreateDataPumpSettings. :rtype: oci.database_migration.models.CreateTargetTypeTablespaceDetails """ return self._tablespace_details @tablespace_details.setter def tablespace_details(self, tablespace_details): """ Sets the tablespace_details of this CreateDataPumpSettings. :param tablespace_details: The tablespace_details of this CreateDataPumpSettings. :type: oci.database_migration.models.CreateTargetTypeTablespaceDetails """ self._tablespace_details = tablespace_details @property def export_directory_object(self): """ Gets the export_directory_object of this CreateDataPumpSettings. :return: The export_directory_object of this CreateDataPumpSettings. :rtype: oci.database_migration.models.CreateDirectoryObject """ return self._export_directory_object @export_directory_object.setter def export_directory_object(self, export_directory_object): """ Sets the export_directory_object of this CreateDataPumpSettings. :param export_directory_object: The export_directory_object of this CreateDataPumpSettings. :type: oci.database_migration.models.CreateDirectoryObject """ self._export_directory_object = export_directory_object @property def import_directory_object(self): """ Gets the import_directory_object of this CreateDataPumpSettings. :return: The import_directory_object of this CreateDataPumpSettings. :rtype: oci.database_migration.models.CreateDirectoryObject """ return self._import_directory_object @import_directory_object.setter def import_directory_object(self, import_directory_object): """ Sets the import_directory_object of this CreateDataPumpSettings. :param import_directory_object: The import_directory_object of this CreateDataPumpSettings. :type: oci.database_migration.models.CreateDirectoryObject """ self._import_directory_object = import_directory_object def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
cải xoăn