1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. WorkspaceProject
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataIntegration.WorkspaceProject

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

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

    Creates a project. Projects are organizational constructs within a workspace that you use to organize your design-time resources, such as tasks or data flows. Projects can be organized into folders.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceProject = new oci.dataintegration.WorkspaceProject("testWorkspaceProject", {
        identifier: _var.workspace_project_identifier,
        workspaceId: oci_dataintegration_workspace.test_workspace.id,
        description: _var.workspace_project_description,
        key: _var.workspace_project_key,
        modelVersion: _var.workspace_project_model_version,
        objectStatus: _var.workspace_project_object_status,
        registryMetadata: {
            aggregatorKey: _var.workspace_project_registry_metadata_aggregator_key,
            isFavorite: _var.workspace_project_registry_metadata_is_favorite,
            key: _var.workspace_project_registry_metadata_key,
            labels: _var.workspace_project_registry_metadata_labels,
            registryVersion: _var.workspace_project_registry_metadata_registry_version,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_project = oci.data_integration.WorkspaceProject("testWorkspaceProject",
        identifier=var["workspace_project_identifier"],
        workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
        description=var["workspace_project_description"],
        key=var["workspace_project_key"],
        model_version=var["workspace_project_model_version"],
        object_status=var["workspace_project_object_status"],
        registry_metadata=oci.data_integration.WorkspaceProjectRegistryMetadataArgs(
            aggregator_key=var["workspace_project_registry_metadata_aggregator_key"],
            is_favorite=var["workspace_project_registry_metadata_is_favorite"],
            key=var["workspace_project_registry_metadata_key"],
            labels=var["workspace_project_registry_metadata_labels"],
            registry_version=var["workspace_project_registry_metadata_registry_version"],
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataIntegration"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataIntegration.NewWorkspaceProject(ctx, "testWorkspaceProject", &DataIntegration.WorkspaceProjectArgs{
    			Identifier:   pulumi.Any(_var.Workspace_project_identifier),
    			WorkspaceId:  pulumi.Any(oci_dataintegration_workspace.Test_workspace.Id),
    			Description:  pulumi.Any(_var.Workspace_project_description),
    			Key:          pulumi.Any(_var.Workspace_project_key),
    			ModelVersion: pulumi.Any(_var.Workspace_project_model_version),
    			ObjectStatus: pulumi.Any(_var.Workspace_project_object_status),
    			RegistryMetadata: &dataintegration.WorkspaceProjectRegistryMetadataArgs{
    				AggregatorKey:   pulumi.Any(_var.Workspace_project_registry_metadata_aggregator_key),
    				IsFavorite:      pulumi.Any(_var.Workspace_project_registry_metadata_is_favorite),
    				Key:             pulumi.Any(_var.Workspace_project_registry_metadata_key),
    				Labels:          pulumi.Any(_var.Workspace_project_registry_metadata_labels),
    				RegistryVersion: pulumi.Any(_var.Workspace_project_registry_metadata_registry_version),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testWorkspaceProject = new Oci.DataIntegration.WorkspaceProject("testWorkspaceProject", new()
        {
            Identifier = @var.Workspace_project_identifier,
            WorkspaceId = oci_dataintegration_workspace.Test_workspace.Id,
            Description = @var.Workspace_project_description,
            Key = @var.Workspace_project_key,
            ModelVersion = @var.Workspace_project_model_version,
            ObjectStatus = @var.Workspace_project_object_status,
            RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceProjectRegistryMetadataArgs
            {
                AggregatorKey = @var.Workspace_project_registry_metadata_aggregator_key,
                IsFavorite = @var.Workspace_project_registry_metadata_is_favorite,
                Key = @var.Workspace_project_registry_metadata_key,
                Labels = @var.Workspace_project_registry_metadata_labels,
                RegistryVersion = @var.Workspace_project_registry_metadata_registry_version,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataIntegration.WorkspaceProject;
    import com.pulumi.oci.DataIntegration.WorkspaceProjectArgs;
    import com.pulumi.oci.DataIntegration.inputs.WorkspaceProjectRegistryMetadataArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testWorkspaceProject = new WorkspaceProject("testWorkspaceProject", WorkspaceProjectArgs.builder()        
                .identifier(var_.workspace_project_identifier())
                .workspaceId(oci_dataintegration_workspace.test_workspace().id())
                .description(var_.workspace_project_description())
                .key(var_.workspace_project_key())
                .modelVersion(var_.workspace_project_model_version())
                .objectStatus(var_.workspace_project_object_status())
                .registryMetadata(WorkspaceProjectRegistryMetadataArgs.builder()
                    .aggregatorKey(var_.workspace_project_registry_metadata_aggregator_key())
                    .isFavorite(var_.workspace_project_registry_metadata_is_favorite())
                    .key(var_.workspace_project_registry_metadata_key())
                    .labels(var_.workspace_project_registry_metadata_labels())
                    .registryVersion(var_.workspace_project_registry_metadata_registry_version())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testWorkspaceProject:
        type: oci:DataIntegration:WorkspaceProject
        properties:
          #Required
          identifier: ${var.workspace_project_identifier}
          workspaceId: ${oci_dataintegration_workspace.test_workspace.id}
          #Optional
          description: ${var.workspace_project_description}
          key: ${var.workspace_project_key}
          modelVersion: ${var.workspace_project_model_version}
          objectStatus: ${var.workspace_project_object_status}
          registryMetadata:
            aggregatorKey: ${var.workspace_project_registry_metadata_aggregator_key}
            isFavorite: ${var.workspace_project_registry_metadata_is_favorite}
            key: ${var.workspace_project_registry_metadata_key}
            labels: ${var.workspace_project_registry_metadata_labels}
            registryVersion: ${var.workspace_project_registry_metadata_registry_version}
    

    Create WorkspaceProject Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkspaceProject(name: string, args: WorkspaceProjectArgs, opts?: CustomResourceOptions);
    @overload
    def WorkspaceProject(resource_name: str,
                         args: WorkspaceProjectArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceProject(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         identifier: Optional[str] = None,
                         workspace_id: Optional[str] = None,
                         description: Optional[str] = None,
                         key: Optional[str] = None,
                         model_version: Optional[str] = None,
                         name: Optional[str] = None,
                         object_status: Optional[int] = None,
                         project_key: Optional[str] = None,
                         registry_metadata: Optional[_dataintegration.WorkspaceProjectRegistryMetadataArgs] = None)
    func NewWorkspaceProject(ctx *Context, name string, args WorkspaceProjectArgs, opts ...ResourceOption) (*WorkspaceProject, error)
    public WorkspaceProject(string name, WorkspaceProjectArgs args, CustomResourceOptions? opts = null)
    public WorkspaceProject(String name, WorkspaceProjectArgs args)
    public WorkspaceProject(String name, WorkspaceProjectArgs args, CustomResourceOptions options)
    
    type: oci:DataIntegration:WorkspaceProject
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WorkspaceProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkspaceProjectArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkspaceProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceProjectArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var workspaceProjectResource = new Oci.DataIntegration.WorkspaceProject("workspaceProjectResource", new()
    {
        Identifier = "string",
        WorkspaceId = "string",
        Description = "string",
        Key = "string",
        ModelVersion = "string",
        Name = "string",
        ObjectStatus = 0,
        ProjectKey = "string",
        RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceProjectRegistryMetadataArgs
        {
            AggregatorKey = "string",
            IsFavorite = false,
            Key = "string",
            Labels = new[]
            {
                "string",
            },
            RegistryVersion = 0,
        },
    });
    
    example, err := DataIntegration.NewWorkspaceProject(ctx, "workspaceProjectResource", &DataIntegration.WorkspaceProjectArgs{
    	Identifier:   pulumi.String("string"),
    	WorkspaceId:  pulumi.String("string"),
    	Description:  pulumi.String("string"),
    	Key:          pulumi.String("string"),
    	ModelVersion: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	ObjectStatus: pulumi.Int(0),
    	ProjectKey:   pulumi.String("string"),
    	RegistryMetadata: &dataintegration.WorkspaceProjectRegistryMetadataArgs{
    		AggregatorKey: pulumi.String("string"),
    		IsFavorite:    pulumi.Bool(false),
    		Key:           pulumi.String("string"),
    		Labels: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		RegistryVersion: pulumi.Int(0),
    	},
    })
    
    var workspaceProjectResource = new WorkspaceProject("workspaceProjectResource", WorkspaceProjectArgs.builder()        
        .identifier("string")
        .workspaceId("string")
        .description("string")
        .key("string")
        .modelVersion("string")
        .name("string")
        .objectStatus(0)
        .projectKey("string")
        .registryMetadata(WorkspaceProjectRegistryMetadataArgs.builder()
            .aggregatorKey("string")
            .isFavorite(false)
            .key("string")
            .labels("string")
            .registryVersion(0)
            .build())
        .build());
    
    workspace_project_resource = oci.data_integration.WorkspaceProject("workspaceProjectResource",
        identifier="string",
        workspace_id="string",
        description="string",
        key="string",
        model_version="string",
        name="string",
        object_status=0,
        project_key="string",
        registry_metadata=oci.data_integration.WorkspaceProjectRegistryMetadataArgs(
            aggregator_key="string",
            is_favorite=False,
            key="string",
            labels=["string"],
            registry_version=0,
        ))
    
    const workspaceProjectResource = new oci.dataintegration.WorkspaceProject("workspaceProjectResource", {
        identifier: "string",
        workspaceId: "string",
        description: "string",
        key: "string",
        modelVersion: "string",
        name: "string",
        objectStatus: 0,
        projectKey: "string",
        registryMetadata: {
            aggregatorKey: "string",
            isFavorite: false,
            key: "string",
            labels: ["string"],
            registryVersion: 0,
        },
    });
    
    type: oci:DataIntegration:WorkspaceProject
    properties:
        description: string
        identifier: string
        key: string
        modelVersion: string
        name: string
        objectStatus: 0
        projectKey: string
        registryMetadata:
            aggregatorKey: string
            isFavorite: false
            key: string
            labels:
                - string
            registryVersion: 0
        workspaceId: string
    

    WorkspaceProject Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The WorkspaceProject resource accepts the following input properties:

    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    WorkspaceId string

    The workspace ID.

    ** 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

    Description string
    (Updatable) A user defined description for the project.
    Key string
    (Updatable) The identifying key for the object.
    ModelVersion string
    (Updatable) The model version of an object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ProjectKey string
    RegistryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    WorkspaceId string

    The workspace ID.

    ** 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

    Description string
    (Updatable) A user defined description for the project.
    Key string
    (Updatable) The identifying key for the object.
    ModelVersion string
    (Updatable) The model version of an object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ProjectKey string
    RegistryMetadata WorkspaceProjectRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId String

    The workspace ID.

    ** 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

    description String
    (Updatable) A user defined description for the project.
    key String
    (Updatable) The identifying key for the object.
    modelVersion String
    (Updatable) The model version of an object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Integer
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    projectKey String
    registryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId string

    The workspace ID.

    ** 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

    description string
    (Updatable) A user defined description for the project.
    key string
    (Updatable) The identifying key for the object.
    modelVersion string
    (Updatable) The model version of an object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    projectKey string
    registryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspace_id str

    The workspace ID.

    ** 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

    description str
    (Updatable) A user defined description for the project.
    key str
    (Updatable) The identifying key for the object.
    model_version str
    (Updatable) The model version of an object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_status int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    project_key str
    registry_metadata dataintegration.WorkspaceProjectRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId String

    The workspace ID.

    ** 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

    description String
    (Updatable) A user defined description for the project.
    key String
    (Updatable) The identifying key for the object.
    modelVersion String
    (Updatable) The model version of an object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    projectKey String
    registryMetadata Property Map
    (Updatable) Information about the object and its parent.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkspaceProject resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    KeyMap Dictionary<string, object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas List<WorkspaceProjectMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ObjectVersion int
    The version of the object that is used to track changes in the object instance.
    ParentReves List<WorkspaceProjectParentRef>
    A reference to the object's parent.
    Id string
    The provider-assigned unique ID for this managed resource.
    KeyMap map[string]interface{}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas []WorkspaceProjectMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ObjectVersion int
    The version of the object that is used to track changes in the object instance.
    ParentReves []WorkspaceProjectParentRef
    A reference to the object's parent.
    id String
    The provider-assigned unique ID for this managed resource.
    keyMap Map<String,Object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<WorkspaceProjectMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    objectVersion Integer
    The version of the object that is used to track changes in the object instance.
    parentReves List<WorkspaceProjectParentRef>
    A reference to the object's parent.
    id string
    The provider-assigned unique ID for this managed resource.
    keyMap {[key: string]: any}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas WorkspaceProjectMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the object.
    objectVersion number
    The version of the object that is used to track changes in the object instance.
    parentReves WorkspaceProjectParentRef[]
    A reference to the object's parent.
    id str
    The provider-assigned unique ID for this managed resource.
    key_map Mapping[str, Any]
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas Sequence[dataintegration.WorkspaceProjectMetadata]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The type of the object.
    object_version int
    The version of the object that is used to track changes in the object instance.
    parent_reves Sequence[dataintegration.WorkspaceProjectParentRef]
    A reference to the object's parent.
    id String
    The provider-assigned unique ID for this managed resource.
    keyMap Map<Any>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    objectVersion Number
    The version of the object that is used to track changes in the object instance.
    parentReves List<Property Map>
    A reference to the object's parent.

    Look up Existing WorkspaceProject Resource

    Get an existing WorkspaceProject resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkspaceProjectState, opts?: CustomResourceOptions): WorkspaceProject
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            identifier: Optional[str] = None,
            key: Optional[str] = None,
            key_map: Optional[Mapping[str, Any]] = None,
            metadatas: Optional[Sequence[_dataintegration.WorkspaceProjectMetadataArgs]] = None,
            model_type: Optional[str] = None,
            model_version: Optional[str] = None,
            name: Optional[str] = None,
            object_status: Optional[int] = None,
            object_version: Optional[int] = None,
            parent_reves: Optional[Sequence[_dataintegration.WorkspaceProjectParentRefArgs]] = None,
            project_key: Optional[str] = None,
            registry_metadata: Optional[_dataintegration.WorkspaceProjectRegistryMetadataArgs] = None,
            workspace_id: Optional[str] = None) -> WorkspaceProject
    func GetWorkspaceProject(ctx *Context, name string, id IDInput, state *WorkspaceProjectState, opts ...ResourceOption) (*WorkspaceProject, error)
    public static WorkspaceProject Get(string name, Input<string> id, WorkspaceProjectState? state, CustomResourceOptions? opts = null)
    public static WorkspaceProject get(String name, Output<String> id, WorkspaceProjectState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    (Updatable) A user defined description for the project.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    KeyMap Dictionary<string, object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas List<WorkspaceProjectMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    (Updatable) The model version of an object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    The version of the object that is used to track changes in the object instance.
    ParentReves List<WorkspaceProjectParentRef>
    A reference to the object's parent.
    ProjectKey string
    RegistryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    WorkspaceId string

    The workspace ID.

    ** 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

    Description string
    (Updatable) A user defined description for the project.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    KeyMap map[string]interface{}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas []WorkspaceProjectMetadataArgs
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    (Updatable) The model version of an object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    The version of the object that is used to track changes in the object instance.
    ParentReves []WorkspaceProjectParentRefArgs
    A reference to the object's parent.
    ProjectKey string
    RegistryMetadata WorkspaceProjectRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    WorkspaceId string

    The workspace ID.

    ** 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

    description String
    (Updatable) A user defined description for the project.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    keyMap Map<String,Object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<WorkspaceProjectMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    (Updatable) The model version of an object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Integer
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Integer
    The version of the object that is used to track changes in the object instance.
    parentReves List<WorkspaceProjectParentRef>
    A reference to the object's parent.
    projectKey String
    registryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    workspaceId String

    The workspace ID.

    ** 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

    description string
    (Updatable) A user defined description for the project.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    (Updatable) The identifying key for the object.
    keyMap {[key: string]: any}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas WorkspaceProjectMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the object.
    modelVersion string
    (Updatable) The model version of an object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion number
    The version of the object that is used to track changes in the object instance.
    parentReves WorkspaceProjectParentRef[]
    A reference to the object's parent.
    projectKey string
    registryMetadata WorkspaceProjectRegistryMetadata
    (Updatable) Information about the object and its parent.
    workspaceId string

    The workspace ID.

    ** 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

    description str
    (Updatable) A user defined description for the project.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    (Updatable) The identifying key for the object.
    key_map Mapping[str, Any]
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas Sequence[dataintegration.WorkspaceProjectMetadataArgs]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The type of the object.
    model_version str
    (Updatable) The model version of an object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_status int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    object_version int
    The version of the object that is used to track changes in the object instance.
    parent_reves Sequence[dataintegration.WorkspaceProjectParentRefArgs]
    A reference to the object's parent.
    project_key str
    registry_metadata dataintegration.WorkspaceProjectRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    workspace_id str

    The workspace ID.

    ** 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

    description String
    (Updatable) A user defined description for the project.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    keyMap Map<Any>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    (Updatable) The model version of an object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Number
    The version of the object that is used to track changes in the object instance.
    parentReves List<Property Map>
    A reference to the object's parent.
    projectKey String
    registryMetadata Property Map
    (Updatable) Information about the object and its parent.
    workspaceId String

    The workspace ID.

    ** 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

    Supporting Types

    WorkspaceProjectMetadata, WorkspaceProjectMetadataArgs

    AggregatorKey string
    (Updatable) The owning object's key for this object.
    Aggregators List<WorkspaceProjectMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<WorkspaceProjectMetadataCountStatistic>
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields Dictionary<string, object>
    Information property fields.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Labels List<string>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    AggregatorKey string
    (Updatable) The owning object's key for this object.
    Aggregators []WorkspaceProjectMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []WorkspaceProjectMetadataCountStatistic
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields map[string]interface{}
    Information property fields.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Labels []string
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    aggregators List<WorkspaceProjectMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<WorkspaceProjectMetadataCountStatistic>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<String,Object>
    Information property fields.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    (Updatable) The registry version.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.
    aggregatorKey string
    (Updatable) The owning object's key for this object.
    aggregators WorkspaceProjectMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics WorkspaceProjectMetadataCountStatistic[]
    A count statistics.
    createdBy string
    The user that created the object.
    createdByName string
    The user that created the object.
    identifierPath string
    The full path to identify this object.
    infoFields {[key: string]: any}
    Information property fields.
    isFavorite boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels string[]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    (Updatable) The registry version.
    timeCreated string
    The date and time that the object was created.
    timeUpdated string
    The date and time that the object was updated.
    updatedBy string
    The user that updated the object.
    updatedByName string
    The user that updated the object.
    aggregator_key str
    (Updatable) The owning object's key for this object.
    aggregators Sequence[dataintegration.WorkspaceProjectMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.WorkspaceProjectMetadataCountStatistic]
    A count statistics.
    created_by str
    The user that created the object.
    created_by_name str
    The user that created the object.
    identifier_path str
    The full path to identify this object.
    info_fields Mapping[str, Any]
    Information property fields.
    is_favorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    labels Sequence[str]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    (Updatable) The registry version.
    time_created str
    The date and time that the object was created.
    time_updated str
    The date and time that the object was updated.
    updated_by str
    The user that updated the object.
    updated_by_name str
    The user that updated the object.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    aggregators List<Property Map>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<Property Map>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<Any>
    Information property fields.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    (Updatable) The registry version.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.

    WorkspaceProjectMetadataAggregator, WorkspaceProjectMetadataAggregatorArgs

    Description string
    (Updatable) A user defined description for the project.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the aggregator.
    Description string
    (Updatable) A user defined description for the project.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the aggregator.
    description String
    (Updatable) A user defined description for the project.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the aggregator.
    description string
    (Updatable) A user defined description for the project.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    (Updatable) The identifying key for the object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type string
    The type of the aggregator.
    description str
    (Updatable) A user defined description for the project.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    (Updatable) The identifying key for the object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type str
    The type of the aggregator.
    description String
    (Updatable) A user defined description for the project.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the aggregator.

    WorkspaceProjectMetadataCountStatistic, WorkspaceProjectMetadataCountStatisticArgs

    WorkspaceProjectMetadataCountStatisticObjectTypeCountList, WorkspaceProjectMetadataCountStatisticObjectTypeCountListArgs

    ObjectCount string
    The value for the count statistic object.
    ObjectType string
    The type of object for the count statistic object.
    ObjectCount string
    The value for the count statistic object.
    ObjectType string
    The type of object for the count statistic object.
    objectCount String
    The value for the count statistic object.
    objectType String
    The type of object for the count statistic object.
    objectCount string
    The value for the count statistic object.
    objectType string
    The type of object for the count statistic object.
    object_count str
    The value for the count statistic object.
    object_type str
    The type of object for the count statistic object.
    objectCount String
    The value for the count statistic object.
    objectType String
    The type of object for the count statistic object.

    WorkspaceProjectParentRef, WorkspaceProjectParentRefArgs

    Parent string
    Key of the parent object.
    RootDocId string
    Key of the root document object.
    Parent string
    Key of the parent object.
    RootDocId string
    Key of the root document object.
    parent String
    Key of the parent object.
    rootDocId String
    Key of the root document object.
    parent string
    Key of the parent object.
    rootDocId string
    Key of the root document object.
    parent str
    Key of the parent object.
    root_doc_id str
    Key of the root document object.
    parent String
    Key of the parent object.
    rootDocId String
    Key of the root document object.

    WorkspaceProjectRegistryMetadata, WorkspaceProjectRegistryMetadataArgs

    AggregatorKey string
    (Updatable) The owning object's key for this object.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Key string
    (Updatable) The identifying key for the object.
    Labels List<string>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    AggregatorKey string
    (Updatable) The owning object's key for this object.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Key string
    (Updatable) The identifying key for the object.
    Labels []string
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key String
    (Updatable) The identifying key for the object.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    (Updatable) The registry version.
    aggregatorKey string
    (Updatable) The owning object's key for this object.
    isFavorite boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key string
    (Updatable) The identifying key for the object.
    labels string[]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    (Updatable) The registry version.
    aggregator_key str
    (Updatable) The owning object's key for this object.
    is_favorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    key str
    (Updatable) The identifying key for the object.
    labels Sequence[str]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    (Updatable) The registry version.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key String
    (Updatable) The identifying key for the object.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    (Updatable) The registry version.

    Import

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

    $ pulumi import oci:DataIntegration/workspaceProject:WorkspaceProject test_workspace_project "workspaces/{workspaceId}/projects/{projectKey}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi