oci_dataintegration_workspace_import_request

This resource provides the Workspace Import Request resource in Oracle Cloud Infrastructure Data Integration service.

Import Metadata Object

Example Usage

resource "oci_dataintegration_workspace_import_request" "test_workspace_import_request" {
	#Required
	bucket = var.workspace_import_request_bucket
	file_name = var.workspace_import_request_file_name
	workspace_id = oci_dataintegration_workspace.test_workspace.id

	#Optional
	are_data_asset_references_included = var.workspace_import_request_are_data_asset_references_included
	import_conflict_resolution {
		#Required
		import_conflict_resolution_type = var.workspace_import_request_import_conflict_resolution_import_conflict_resolution_type

		#Optional
		duplicate_prefix = var.workspace_import_request_import_conflict_resolution_duplicate_prefix
		duplicate_suffix = var.workspace_import_request_import_conflict_resolution_duplicate_suffix
	}
	object_key_for_import = var.workspace_import_request_object_key_for_import
	object_storage_region = var.workspace_import_request_object_storage_region
	object_storage_tenancy_id = oci_identity_tenancy.test_tenancy.id
}

Argument Reference

The following arguments are supported:

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Workspace Import Request * update - (Defaults to 20 minutes), when updating the Workspace Import Request * delete - (Defaults to 20 minutes), when destroying the Workspace Import Request

Import

WorkspaceImportRequests can be imported using the id, e.g.

$ terraform import oci_dataintegration_workspace_import_request.test_workspace_import_request "workspaces/{workspaceId}/importRequests/{importRequestKey}"