CreateImportRequestDetails¶
- 
class oci.data_integration.models.CreateImportRequestDetails(**kwargs)¶
- Bases: - object- Details of import object. - Methods - __init__(**kwargs)- Initializes a new CreateImportRequestDetails object with values from keyword arguments. - Attributes - are_data_asset_references_included- Gets the are_data_asset_references_included of this CreateImportRequestDetails. - bucket_name- [Required] Gets the bucket_name of this CreateImportRequestDetails. - file_name- [Required] Gets the file_name of this CreateImportRequestDetails. - import_conflict_resolution- Gets the import_conflict_resolution of this CreateImportRequestDetails. - object_key_for_import- Gets the object_key_for_import of this CreateImportRequestDetails. - object_storage_region- Gets the object_storage_region of this CreateImportRequestDetails. - object_storage_tenancy_id- Gets the object_storage_tenancy_id of this CreateImportRequestDetails. - 
__init__(**kwargs)¶
- Initializes a new CreateImportRequestDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - bucket_name (str) – The value to assign to the bucket_name property of this CreateImportRequestDetails.
- file_name (str) – The value to assign to the file_name property of this CreateImportRequestDetails.
- object_storage_tenancy_id (str) – The value to assign to the object_storage_tenancy_id property of this CreateImportRequestDetails.
- object_storage_region (str) – The value to assign to the object_storage_region property of this CreateImportRequestDetails.
- object_key_for_import (str) – The value to assign to the object_key_for_import property of this CreateImportRequestDetails.
- are_data_asset_references_included (bool) – The value to assign to the are_data_asset_references_included property of this CreateImportRequestDetails.
- import_conflict_resolution (oci.data_integration.models.ImportConflictResolution) – The value to assign to the import_conflict_resolution property of this CreateImportRequestDetails.
 
 - 
are_data_asset_references_included¶
- Gets the are_data_asset_references_included of this CreateImportRequestDetails. This field controls if the data asset references will be included during import. - Returns: - The are_data_asset_references_included of this CreateImportRequestDetails. - Return type: - bool 
 - 
bucket_name¶
- [Required] Gets the bucket_name of this CreateImportRequestDetails. Name of the Object Storage bucket where the object will be imported from. - Returns: - The bucket_name of this CreateImportRequestDetails. - Return type: - str 
 - 
file_name¶
- [Required] Gets the file_name of this CreateImportRequestDetails. Name of the zip file to be imported. - Returns: - The file_name of this CreateImportRequestDetails. - Return type: - str 
 - 
import_conflict_resolution¶
- Gets the import_conflict_resolution of this CreateImportRequestDetails. - Returns: - The import_conflict_resolution of this CreateImportRequestDetails. - Return type: - oci.data_integration.models.ImportConflictResolution 
 - 
object_key_for_import¶
- Gets the object_key_for_import of this CreateImportRequestDetails. Key of the object inside which all the objects will be imported - Returns: - The object_key_for_import of this CreateImportRequestDetails. - Return type: - str 
 - 
object_storage_region¶
- Gets the object_storage_region of this CreateImportRequestDetails. Region of the object storage (if using object storage of different region) - Returns: - The object_storage_region of this CreateImportRequestDetails. - Return type: - str 
 - 
object_storage_tenancy_id¶
- Gets the object_storage_tenancy_id of this CreateImportRequestDetails. Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy) - Returns: - The object_storage_tenancy_id of this CreateImportRequestDetails. - Return type: - str 
 
-