oci.DataIntegration.WorkspaceProject
Explore with Pulumi AI
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("test_workspace_project", {
identifier: workspaceProjectIdentifier,
name: workspaceProjectName,
workspaceId: testWorkspace.id,
description: workspaceProjectDescription,
key: workspaceProjectKey,
modelVersion: workspaceProjectModelVersion,
objectStatus: workspaceProjectObjectStatus,
registryMetadata: {
aggregatorKey: workspaceProjectRegistryMetadataAggregatorKey,
isFavorite: workspaceProjectRegistryMetadataIsFavorite,
key: workspaceProjectRegistryMetadataKey,
labels: workspaceProjectRegistryMetadataLabels,
registryVersion: workspaceProjectRegistryMetadataRegistryVersion,
},
});
import pulumi
import pulumi_oci as oci
test_workspace_project = oci.data_integration.WorkspaceProject("test_workspace_project",
identifier=workspace_project_identifier,
name=workspace_project_name,
workspace_id=test_workspace["id"],
description=workspace_project_description,
key=workspace_project_key,
model_version=workspace_project_model_version,
object_status=workspace_project_object_status,
registry_metadata=oci.data_integration.WorkspaceProjectRegistryMetadataArgs(
aggregator_key=workspace_project_registry_metadata_aggregator_key,
is_favorite=workspace_project_registry_metadata_is_favorite,
key=workspace_project_registry_metadata_key,
labels=workspace_project_registry_metadata_labels,
registry_version=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, "test_workspace_project", &DataIntegration.WorkspaceProjectArgs{
Identifier: pulumi.Any(workspaceProjectIdentifier),
Name: pulumi.Any(workspaceProjectName),
WorkspaceId: pulumi.Any(testWorkspace.Id),
Description: pulumi.Any(workspaceProjectDescription),
Key: pulumi.Any(workspaceProjectKey),
ModelVersion: pulumi.Any(workspaceProjectModelVersion),
ObjectStatus: pulumi.Any(workspaceProjectObjectStatus),
RegistryMetadata: &dataintegration.WorkspaceProjectRegistryMetadataArgs{
AggregatorKey: pulumi.Any(workspaceProjectRegistryMetadataAggregatorKey),
IsFavorite: pulumi.Any(workspaceProjectRegistryMetadataIsFavorite),
Key: pulumi.Any(workspaceProjectRegistryMetadataKey),
Labels: pulumi.Any(workspaceProjectRegistryMetadataLabels),
RegistryVersion: pulumi.Any(workspaceProjectRegistryMetadataRegistryVersion),
},
})
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("test_workspace_project", new()
{
Identifier = workspaceProjectIdentifier,
Name = workspaceProjectName,
WorkspaceId = testWorkspace.Id,
Description = workspaceProjectDescription,
Key = workspaceProjectKey,
ModelVersion = workspaceProjectModelVersion,
ObjectStatus = workspaceProjectObjectStatus,
RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceProjectRegistryMetadataArgs
{
AggregatorKey = workspaceProjectRegistryMetadataAggregatorKey,
IsFavorite = workspaceProjectRegistryMetadataIsFavorite,
Key = workspaceProjectRegistryMetadataKey,
Labels = workspaceProjectRegistryMetadataLabels,
RegistryVersion = workspaceProjectRegistryMetadataRegistryVersion,
},
});
});
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(workspaceProjectIdentifier)
.name(workspaceProjectName)
.workspaceId(testWorkspace.id())
.description(workspaceProjectDescription)
.key(workspaceProjectKey)
.modelVersion(workspaceProjectModelVersion)
.objectStatus(workspaceProjectObjectStatus)
.registryMetadata(WorkspaceProjectRegistryMetadataArgs.builder()
.aggregatorKey(workspaceProjectRegistryMetadataAggregatorKey)
.isFavorite(workspaceProjectRegistryMetadataIsFavorite)
.key(workspaceProjectRegistryMetadataKey)
.labels(workspaceProjectRegistryMetadataLabels)
.registryVersion(workspaceProjectRegistryMetadataRegistryVersion)
.build())
.build());
}
}
resources:
testWorkspaceProject:
type: oci:DataIntegration:WorkspaceProject
name: test_workspace_project
properties:
identifier: ${workspaceProjectIdentifier}
name: ${workspaceProjectName}
workspaceId: ${testWorkspace.id}
description: ${workspaceProjectDescription}
key: ${workspaceProjectKey}
modelVersion: ${workspaceProjectModelVersion}
objectStatus: ${workspaceProjectObjectStatus}
registryMetadata:
aggregatorKey: ${workspaceProjectRegistryMetadataAggregatorKey}
isFavorite: ${workspaceProjectRegistryMetadataIsFavorite}
key: ${workspaceProjectRegistryMetadataKey}
labels: ${workspaceProjectRegistryMetadataLabels}
registryVersion: ${workspaceProjectRegistryMetadataRegistryVersion}
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.
Constructor 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.
- Workspace
Id 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) Generated key that can be used in API calls to identify project.
- Model
Version 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.
- 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 string - Registry
Metadata WorkspaceProject Registry Metadata - (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.
- Workspace
Id 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) Generated key that can be used in API calls to identify project.
- Model
Version 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.
- 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 string - Registry
Metadata WorkspaceProject Registry Metadata Args - (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.
- workspace
Id 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) Generated key that can be used in API calls to identify project.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- project
Key String - registry
Metadata WorkspaceProject Registry Metadata - (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.
- workspace
Id 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) Generated key that can be used in API calls to identify project.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- project
Key string - registry
Metadata WorkspaceProject Registry Metadata - (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) Generated key that can be used in API calls to identify project.
- 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.Workspace Project Registry Metadata Args - (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.
- workspace
Id 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) Generated key that can be used in API calls to identify project.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- project
Key String - registry
Metadata 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.
- Key
Map 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<Workspace
Project Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - 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 List<WorkspaceProject Parent Ref> - A reference to the object's parent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Map 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
[]Workspace
Project Metadata - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - 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 []WorkspaceProject Parent Ref - A reference to the object's parent.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map 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<Workspace
Project Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- object
Version Integer - The version of the object that is used to track changes in the object instance.
- parent
Reves List<WorkspaceProject Parent Ref> - A reference to the object's parent.
- id string
- The provider-assigned unique ID for this managed resource.
- key
Map {[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
Workspace
Project Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The type of the object.
- object
Version number - The version of the object that is used to track changes in the object instance.
- parent
Reves WorkspaceProject Parent Ref[] - 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.
Workspace Project Metadata] - 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.Workspace Project Parent Ref] - A reference to the object's parent.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map 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.
- model
Type String - The type of the object.
- object
Version Number - The version of the object that is used to track changes in the object instance.
- parent
Reves 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.
- 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) Generated key that can be used in API calls to identify project.
- Key
Map 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<Workspace
Project Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version 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.
- 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 List<WorkspaceProject Parent Ref> - A reference to the object's parent.
- Project
Key string - Registry
Metadata WorkspaceProject Registry Metadata - (Updatable) Information about the object and its parent.
- Workspace
Id 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) Generated key that can be used in API calls to identify project.
- Key
Map 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
[]Workspace
Project Metadata Args - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version 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.
- 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 []WorkspaceProject Parent Ref Args - A reference to the object's parent.
- Project
Key string - Registry
Metadata WorkspaceProject Registry Metadata Args - (Updatable) Information about the object and its parent.
- Workspace
Id 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) Generated key that can be used in API calls to identify project.
- key
Map 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<Workspace
Project Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - The version of the object that is used to track changes in the object instance.
- parent
Reves List<WorkspaceProject Parent Ref> - A reference to the object's parent.
- project
Key String - registry
Metadata WorkspaceProject Registry Metadata - (Updatable) Information about the object and its parent.
- workspace
Id 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) Generated key that can be used in API calls to identify project.
- key
Map {[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
Workspace
Project Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The type of the object.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - The version of the object that is used to track changes in the object instance.
- parent
Reves WorkspaceProject Parent Ref[] - A reference to the object's parent.
- project
Key string - registry
Metadata WorkspaceProject Registry Metadata - (Updatable) Information about the object and its parent.
- workspace
Id 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) Generated key that can be used in API calls to identify project.
- 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.
Workspace Project Metadata Args] - 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.Workspace Project Parent Ref Args] - A reference to the object's parent.
- project_
key str - registry_
metadata dataintegration.Workspace Project Registry Metadata Args - (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) Generated key that can be used in API calls to identify project.
- key
Map 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.
- model
Type String - The type of the object.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - The version of the object that is used to track changes in the object instance.
- parent
Reves List<Property Map> - A reference to the object's parent.
- project
Key String - registry
Metadata Property Map - (Updatable) Information about the object and its parent.
- workspace
Id 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
- Aggregator
Key string - The owning object key for this object.
- Aggregators
List<Workspace
Project Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<WorkspaceProject Metadata Count Statistic> - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields Dictionary<string, object> - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- Aggregator
Key string - The owning object key for this object.
- Aggregators
[]Workspace
Project Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []WorkspaceProject Metadata Count Statistic - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields map[string]interface{} - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators
List<Workspace
Project Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<WorkspaceProject Metadata Count Statistic> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String,Object> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Integer - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
- aggregator
Key string - The owning object key for this object.
- aggregators
Workspace
Project Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics WorkspaceProject Metadata Count Statistic[] - A count statistics.
- created
By string - The user that created the object.
- created
By stringName - The user that created the object.
- identifier
Path string - The full path to identify this object.
- info
Fields {[key: string]: any} - Information property fields.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version number - The registry version of the object.
- time
Created string - The date and time that the object was created.
- time
Updated string - The date and time that the object was updated.
- updated
By string - The user that updated the object.
- updated
By stringName - The user that updated the object.
- aggregator_
key str - The owning object key for this object.
- aggregators
Sequence[dataintegration.
Workspace Project Metadata Aggregator] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count_
statistics Sequence[dataintegration.Workspace Project Metadata Count Statistic] - A count statistics.
- created_
by str - The user that created the object.
- created_
by_ strname - 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 - Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_
version int - The registry version of the object.
- 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_ strname - The user that updated the object.
- aggregator
Key String - The owning object 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.
- count
Statistics List<Property Map> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<Any> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Number - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - 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) Generated key that can be used in API calls to identify project.
- 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) Generated key that can be used in API calls to identify project.
- 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) Generated key that can be used in API calls to identify project.
- 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) Generated key that can be used in API calls to identify project.
- 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) Generated key that can be used in API calls to identify project.
- 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) Generated key that can be used in API calls to identify project.
- 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
- Object
Type List<WorkspaceCount Lists Project Metadata Count Statistic Object Type Count List> - The array of statistics.
- Object
Type []WorkspaceCount Lists Project Metadata Count Statistic Object Type Count List - The array of statistics.
- object
Type List<WorkspaceCount Lists Project Metadata Count Statistic Object Type Count List> - The array of statistics.
- object
Type WorkspaceCount Lists Project Metadata Count Statistic Object Type Count List[] - The array of statistics.
- object
Type List<Property Map>Count Lists - The array of statistics.
WorkspaceProjectMetadataCountStatisticObjectTypeCountList, WorkspaceProjectMetadataCountStatisticObjectTypeCountListArgs
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
- object
Count string - The value for the count statistic object.
- object
Type 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.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
WorkspaceProjectParentRef, WorkspaceProjectParentRefArgs
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
WorkspaceProjectRegistryMetadata, WorkspaceProjectRegistryMetadataArgs
- Aggregator
Key string - (Updatable) The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - (Updatable) The registry version.
- Aggregator
Key string - (Updatable) The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - (Updatable) The registry version.
- aggregator
Key String - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version Integer - (Updatable) The registry version.
- aggregator
Key string - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version 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.
- aggregator
Key String - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version 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.