oci_dataintegration_workspace_application_patch

This resource provides the Workspace Application Patch resource in Oracle Cloud Infrastructure Data Integration service.

Creates a patch in an application.

Example Usage

resource "oci_dataintegration_workspace_application_patch" "test_workspace_application_patch" {
    #Required
    application_key = var.workspace_application_patch_application_key
    identifier = var.workspace_application_patch_identifier
    name = var.workspace_application_patch_name
    object_keys = var.workspace_application_patch_object_keys
    patch_type = var.workspace_application_patch_patch_type
    workspace_id = oci_dataintegration_workspace.test_workspace.id

    #Optional
    description = var.workspace_application_patch_description
    key = var.workspace_application_patch_key
    model_version = var.workspace_application_patch_model_version
    object_status = var.workspace_application_patch_object_status
    registry_metadata {

        #Optional
        aggregator_key = var.workspace_application_patch_registry_metadata_aggregator_key
        is_favorite = var.workspace_application_patch_registry_metadata_is_favorite
        key = var.workspace_application_patch_registry_metadata_key
        labels = var.workspace_application_patch_registry_metadata_labels
        registry_version = var.workspace_application_patch_registry_metadata_registry_version
    }
}

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 Application Patch * update - (Defaults to 20 minutes), when updating the Workspace Application Patch * delete - (Defaults to 20 minutes), when destroying the Workspace Application Patch

Import

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

$ terraform import oci_dataintegration_workspace_application_patch.test_workspace_application_patch "workspaces/{workspaceId}/applications/{applicationKey}/patches/{patchKey}"