CreateCopyObjectRequestDetails¶
-
class
oci.data_integration.models.
CreateCopyObjectRequestDetails
(**kwargs)¶ Bases:
object
Details of copy object.
Methods
__init__
(**kwargs)Initializes a new CreateCopyObjectRequestDetails object with values from keyword arguments. Attributes
copy_conflict_resolution
[Required] Gets the copy_conflict_resolution of this CreateCopyObjectRequestDetails. object_keys
[Required] Gets the object_keys of this CreateCopyObjectRequestDetails. source_workspace_id
[Required] Gets the source_workspace_id of this CreateCopyObjectRequestDetails. -
__init__
(**kwargs)¶ Initializes a new CreateCopyObjectRequestDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - source_workspace_id (str) – The value to assign to the source_workspace_id property of this CreateCopyObjectRequestDetails.
- object_keys (list[str]) – The value to assign to the object_keys property of this CreateCopyObjectRequestDetails.
- copy_conflict_resolution (oci.data_integration.models.CopyConflictResolution) – The value to assign to the copy_conflict_resolution property of this CreateCopyObjectRequestDetails.
-
copy_conflict_resolution
¶ [Required] Gets the copy_conflict_resolution of this CreateCopyObjectRequestDetails.
Returns: The copy_conflict_resolution of this CreateCopyObjectRequestDetails. Return type: oci.data_integration.models.CopyConflictResolution
-
object_keys
¶ [Required] Gets the object_keys of this CreateCopyObjectRequestDetails. The list of the objects to be copied.
Returns: The object_keys of this CreateCopyObjectRequestDetails. Return type: list[str]
-
source_workspace_id
¶ [Required] Gets the source_workspace_id of this CreateCopyObjectRequestDetails. The workspace id of the source from where we need to copy object.
Returns: The source_workspace_id of this CreateCopyObjectRequestDetails. Return type: str
-