oci_dataintegration_workspace_export_request

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

Export Metadata Object

Example Usage

resource "oci_dataintegration_workspace_export_request" "test_workspace_export_request" {
	#Required
	bucket = var.workspace_export_request_bucket
	workspace_id = oci_dataintegration_workspace.test_workspace.id

	#Optional
	are_references_included = var.workspace_export_request_are_references_included
	file_name = var.workspace_export_request_file_name
	filters = var.workspace_export_request_filters
	is_object_overwrite_enabled = var.workspace_export_request_is_object_overwrite_enabled
	object_keys = var.workspace_export_request_object_keys
	object_storage_region = var.workspace_export_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 Export Request * update - (Defaults to 20 minutes), when updating the Workspace Export Request * delete - (Defaults to 20 minutes), when destroying the Workspace Export Request

Import

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

$ terraform import oci_dataintegration_workspace_export_request.test_workspace_export_request "workspaces/{workspaceId}/exportRequests/{exportRequestKey}"