1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. WorkspaceApplication
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DataIntegration.WorkspaceApplication

Explore with Pulumi AI

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

Creates an application.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testWorkspaceApplication = new oci.dataintegration.WorkspaceApplication("test_workspace_application", {
    identifier: workspaceApplicationIdentifier,
    name: workspaceApplicationName,
    workspaceId: testWorkspace.id,
    modelType: workspaceApplicationModelType,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: workspaceApplicationDescription,
    displayName: workspaceApplicationDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
    key: workspaceApplicationKey,
    modelVersion: workspaceApplicationModelVersion,
    objectStatus: workspaceApplicationObjectStatus,
    registryMetadata: {
        aggregatorKey: workspaceApplicationRegistryMetadataAggregatorKey,
        isFavorite: workspaceApplicationRegistryMetadataIsFavorite,
        key: workspaceApplicationRegistryMetadataKey,
        labels: workspaceApplicationRegistryMetadataLabels,
        registryVersion: workspaceApplicationRegistryMetadataRegistryVersion,
    },
    sourceApplicationInfo: {
        applicationKey: workspaceApplicationSourceApplicationInfoApplicationKey,
        copyType: workspaceApplicationSourceApplicationInfoCopyType,
        workspaceId: testWorkspace.id,
    },
    state: workspaceApplicationState,
});
Copy
import pulumi
import pulumi_oci as oci

test_workspace_application = oci.data_integration.WorkspaceApplication("test_workspace_application",
    identifier=workspace_application_identifier,
    name=workspace_application_name,
    workspace_id=test_workspace["id"],
    model_type=workspace_application_model_type,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=workspace_application_description,
    display_name=workspace_application_display_name,
    freeform_tags={
        "bar-key": "value",
    },
    key=workspace_application_key,
    model_version=workspace_application_model_version,
    object_status=workspace_application_object_status,
    registry_metadata={
        "aggregator_key": workspace_application_registry_metadata_aggregator_key,
        "is_favorite": workspace_application_registry_metadata_is_favorite,
        "key": workspace_application_registry_metadata_key,
        "labels": workspace_application_registry_metadata_labels,
        "registry_version": workspace_application_registry_metadata_registry_version,
    },
    source_application_info={
        "application_key": workspace_application_source_application_info_application_key,
        "copy_type": workspace_application_source_application_info_copy_type,
        "workspace_id": test_workspace["id"],
    },
    state=workspace_application_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataintegration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataintegration.NewWorkspaceApplication(ctx, "test_workspace_application", &dataintegration.WorkspaceApplicationArgs{
			Identifier:  pulumi.Any(workspaceApplicationIdentifier),
			Name:        pulumi.Any(workspaceApplicationName),
			WorkspaceId: pulumi.Any(testWorkspace.Id),
			ModelType:   pulumi.Any(workspaceApplicationModelType),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(workspaceApplicationDescription),
			DisplayName: pulumi.Any(workspaceApplicationDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			Key:          pulumi.Any(workspaceApplicationKey),
			ModelVersion: pulumi.Any(workspaceApplicationModelVersion),
			ObjectStatus: pulumi.Any(workspaceApplicationObjectStatus),
			RegistryMetadata: &dataintegration.WorkspaceApplicationRegistryMetadataArgs{
				AggregatorKey:   pulumi.Any(workspaceApplicationRegistryMetadataAggregatorKey),
				IsFavorite:      pulumi.Any(workspaceApplicationRegistryMetadataIsFavorite),
				Key:             pulumi.Any(workspaceApplicationRegistryMetadataKey),
				Labels:          pulumi.Any(workspaceApplicationRegistryMetadataLabels),
				RegistryVersion: pulumi.Any(workspaceApplicationRegistryMetadataRegistryVersion),
			},
			SourceApplicationInfo: &dataintegration.WorkspaceApplicationSourceApplicationInfoArgs{
				ApplicationKey: pulumi.Any(workspaceApplicationSourceApplicationInfoApplicationKey),
				CopyType:       pulumi.Any(workspaceApplicationSourceApplicationInfoCopyType),
				WorkspaceId:    pulumi.Any(testWorkspace.Id),
			},
			State: pulumi.Any(workspaceApplicationState),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testWorkspaceApplication = new Oci.DataIntegration.WorkspaceApplication("test_workspace_application", new()
    {
        Identifier = workspaceApplicationIdentifier,
        Name = workspaceApplicationName,
        WorkspaceId = testWorkspace.Id,
        ModelType = workspaceApplicationModelType,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = workspaceApplicationDescription,
        DisplayName = workspaceApplicationDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        Key = workspaceApplicationKey,
        ModelVersion = workspaceApplicationModelVersion,
        ObjectStatus = workspaceApplicationObjectStatus,
        RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationRegistryMetadataArgs
        {
            AggregatorKey = workspaceApplicationRegistryMetadataAggregatorKey,
            IsFavorite = workspaceApplicationRegistryMetadataIsFavorite,
            Key = workspaceApplicationRegistryMetadataKey,
            Labels = workspaceApplicationRegistryMetadataLabels,
            RegistryVersion = workspaceApplicationRegistryMetadataRegistryVersion,
        },
        SourceApplicationInfo = new Oci.DataIntegration.Inputs.WorkspaceApplicationSourceApplicationInfoArgs
        {
            ApplicationKey = workspaceApplicationSourceApplicationInfoApplicationKey,
            CopyType = workspaceApplicationSourceApplicationInfoCopyType,
            WorkspaceId = testWorkspace.Id,
        },
        State = workspaceApplicationState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.WorkspaceApplication;
import com.pulumi.oci.DataIntegration.WorkspaceApplicationArgs;
import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationRegistryMetadataArgs;
import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationSourceApplicationInfoArgs;
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 testWorkspaceApplication = new WorkspaceApplication("testWorkspaceApplication", WorkspaceApplicationArgs.builder()
            .identifier(workspaceApplicationIdentifier)
            .name(workspaceApplicationName)
            .workspaceId(testWorkspace.id())
            .modelType(workspaceApplicationModelType)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(workspaceApplicationDescription)
            .displayName(workspaceApplicationDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .key(workspaceApplicationKey)
            .modelVersion(workspaceApplicationModelVersion)
            .objectStatus(workspaceApplicationObjectStatus)
            .registryMetadata(WorkspaceApplicationRegistryMetadataArgs.builder()
                .aggregatorKey(workspaceApplicationRegistryMetadataAggregatorKey)
                .isFavorite(workspaceApplicationRegistryMetadataIsFavorite)
                .key(workspaceApplicationRegistryMetadataKey)
                .labels(workspaceApplicationRegistryMetadataLabels)
                .registryVersion(workspaceApplicationRegistryMetadataRegistryVersion)
                .build())
            .sourceApplicationInfo(WorkspaceApplicationSourceApplicationInfoArgs.builder()
                .applicationKey(workspaceApplicationSourceApplicationInfoApplicationKey)
                .copyType(workspaceApplicationSourceApplicationInfoCopyType)
                .workspaceId(testWorkspace.id())
                .build())
            .state(workspaceApplicationState)
            .build());

    }
}
Copy
resources:
  testWorkspaceApplication:
    type: oci:DataIntegration:WorkspaceApplication
    name: test_workspace_application
    properties:
      identifier: ${workspaceApplicationIdentifier}
      name: ${workspaceApplicationName}
      workspaceId: ${testWorkspace.id}
      modelType: ${workspaceApplicationModelType}
      definedTags:
        foo-namespace.bar-key: value
      description: ${workspaceApplicationDescription}
      displayName: ${workspaceApplicationDisplayName}
      freeformTags:
        bar-key: value
      key: ${workspaceApplicationKey}
      modelVersion: ${workspaceApplicationModelVersion}
      objectStatus: ${workspaceApplicationObjectStatus}
      registryMetadata:
        aggregatorKey: ${workspaceApplicationRegistryMetadataAggregatorKey}
        isFavorite: ${workspaceApplicationRegistryMetadataIsFavorite}
        key: ${workspaceApplicationRegistryMetadataKey}
        labels: ${workspaceApplicationRegistryMetadataLabels}
        registryVersion: ${workspaceApplicationRegistryMetadataRegistryVersion}
      sourceApplicationInfo:
        applicationKey: ${workspaceApplicationSourceApplicationInfoApplicationKey}
        copyType: ${workspaceApplicationSourceApplicationInfoCopyType}
        workspaceId: ${testWorkspace.id}
      state: ${workspaceApplicationState}
Copy

Create WorkspaceApplication Resource

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

Constructor syntax

new WorkspaceApplication(name: string, args: WorkspaceApplicationArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceApplication(resource_name: str,
                         args: WorkspaceApplicationArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def WorkspaceApplication(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         identifier: Optional[str] = None,
                         workspace_id: Optional[str] = None,
                         model_type: Optional[str] = None,
                         freeform_tags: Optional[Mapping[str, str]] = None,
                         defined_tags: Optional[Mapping[str, str]] = None,
                         key: Optional[str] = None,
                         display_name: Optional[str] = None,
                         model_version: Optional[str] = None,
                         name: Optional[str] = None,
                         object_status: Optional[int] = None,
                         registry_metadata: Optional[_dataintegration.WorkspaceApplicationRegistryMetadataArgs] = None,
                         source_application_info: Optional[_dataintegration.WorkspaceApplicationSourceApplicationInfoArgs] = None,
                         state: Optional[str] = None,
                         description: Optional[str] = None)
func NewWorkspaceApplication(ctx *Context, name string, args WorkspaceApplicationArgs, opts ...ResourceOption) (*WorkspaceApplication, error)
public WorkspaceApplication(string name, WorkspaceApplicationArgs args, CustomResourceOptions? opts = null)
public WorkspaceApplication(String name, WorkspaceApplicationArgs args)
public WorkspaceApplication(String name, WorkspaceApplicationArgs args, CustomResourceOptions options)
type: oci:DataIntegration:WorkspaceApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WorkspaceApplicationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceApplicationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkspaceApplicationArgs
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 workspaceApplicationResource = new Oci.DataIntegration.WorkspaceApplication("workspaceApplicationResource", new()
{
    Identifier = "string",
    WorkspaceId = "string",
    ModelType = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    DefinedTags = 
    {
        { "string", "string" },
    },
    Key = "string",
    DisplayName = "string",
    ModelVersion = "string",
    Name = "string",
    ObjectStatus = 0,
    RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationRegistryMetadataArgs
    {
        AggregatorKey = "string",
        IsFavorite = false,
        Key = "string",
        Labels = new[]
        {
            "string",
        },
        RegistryVersion = 0,
    },
    SourceApplicationInfo = new Oci.DataIntegration.Inputs.WorkspaceApplicationSourceApplicationInfoArgs
    {
        ApplicationKey = "string",
        ApplicationVersion = "string",
        CopyType = "string",
        LastPatchKey = "string",
        WorkspaceId = "string",
    },
    State = "string",
    Description = "string",
});
Copy
example, err := DataIntegration.NewWorkspaceApplication(ctx, "workspaceApplicationResource", &DataIntegration.WorkspaceApplicationArgs{
	Identifier:  pulumi.String("string"),
	WorkspaceId: pulumi.String("string"),
	ModelType:   pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Key:          pulumi.String("string"),
	DisplayName:  pulumi.String("string"),
	ModelVersion: pulumi.String("string"),
	Name:         pulumi.String("string"),
	ObjectStatus: pulumi.Int(0),
	RegistryMetadata: &dataintegration.WorkspaceApplicationRegistryMetadataArgs{
		AggregatorKey: pulumi.String("string"),
		IsFavorite:    pulumi.Bool(false),
		Key:           pulumi.String("string"),
		Labels: pulumi.StringArray{
			pulumi.String("string"),
		},
		RegistryVersion: pulumi.Int(0),
	},
	SourceApplicationInfo: &dataintegration.WorkspaceApplicationSourceApplicationInfoArgs{
		ApplicationKey:     pulumi.String("string"),
		ApplicationVersion: pulumi.String("string"),
		CopyType:           pulumi.String("string"),
		LastPatchKey:       pulumi.String("string"),
		WorkspaceId:        pulumi.String("string"),
	},
	State:       pulumi.String("string"),
	Description: pulumi.String("string"),
})
Copy
var workspaceApplicationResource = new WorkspaceApplication("workspaceApplicationResource", WorkspaceApplicationArgs.builder()
    .identifier("string")
    .workspaceId("string")
    .modelType("string")
    .freeformTags(Map.of("string", "string"))
    .definedTags(Map.of("string", "string"))
    .key("string")
    .displayName("string")
    .modelVersion("string")
    .name("string")
    .objectStatus(0)
    .registryMetadata(WorkspaceApplicationRegistryMetadataArgs.builder()
        .aggregatorKey("string")
        .isFavorite(false)
        .key("string")
        .labels("string")
        .registryVersion(0)
        .build())
    .sourceApplicationInfo(WorkspaceApplicationSourceApplicationInfoArgs.builder()
        .applicationKey("string")
        .applicationVersion("string")
        .copyType("string")
        .lastPatchKey("string")
        .workspaceId("string")
        .build())
    .state("string")
    .description("string")
    .build());
Copy
workspace_application_resource = oci.data_integration.WorkspaceApplication("workspaceApplicationResource",
    identifier="string",
    workspace_id="string",
    model_type="string",
    freeform_tags={
        "string": "string",
    },
    defined_tags={
        "string": "string",
    },
    key="string",
    display_name="string",
    model_version="string",
    name="string",
    object_status=0,
    registry_metadata={
        "aggregator_key": "string",
        "is_favorite": False,
        "key": "string",
        "labels": ["string"],
        "registry_version": 0,
    },
    source_application_info={
        "application_key": "string",
        "application_version": "string",
        "copy_type": "string",
        "last_patch_key": "string",
        "workspace_id": "string",
    },
    state="string",
    description="string")
Copy
const workspaceApplicationResource = new oci.dataintegration.WorkspaceApplication("workspaceApplicationResource", {
    identifier: "string",
    workspaceId: "string",
    modelType: "string",
    freeformTags: {
        string: "string",
    },
    definedTags: {
        string: "string",
    },
    key: "string",
    displayName: "string",
    modelVersion: "string",
    name: "string",
    objectStatus: 0,
    registryMetadata: {
        aggregatorKey: "string",
        isFavorite: false,
        key: "string",
        labels: ["string"],
        registryVersion: 0,
    },
    sourceApplicationInfo: {
        applicationKey: "string",
        applicationVersion: "string",
        copyType: "string",
        lastPatchKey: "string",
        workspaceId: "string",
    },
    state: "string",
    description: "string",
});
Copy
type: oci:DataIntegration:WorkspaceApplication
properties:
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    identifier: string
    key: string
    modelType: string
    modelVersion: string
    name: string
    objectStatus: 0
    registryMetadata:
        aggregatorKey: string
        isFavorite: false
        key: string
        labels:
            - string
        registryVersion: 0
    sourceApplicationInfo:
        applicationKey: string
        applicationVersion: string
        copyType: string
        lastPatchKey: string
        workspaceId: string
    state: string
    workspaceId: string
Copy

WorkspaceApplication Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The WorkspaceApplication resource accepts the following input properties:

Identifier This property is required. 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.
ModelType This property is required. string
(Updatable) The type of the application.
WorkspaceId
This property is required.
Changes to this property will trigger replacement.
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

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) Detailed description for the object.
DisplayName 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.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
Key string
(Updatable) Currently not used on application creation. Reserved for future.
ModelVersion string
(Updatable) The object's model version.
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.
RegistryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
SourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
State string
(Updatable) The current state of the workspace.
Identifier This property is required. 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.
ModelType This property is required. string
(Updatable) The type of the application.
WorkspaceId
This property is required.
Changes to this property will trigger replacement.
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

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) Detailed description for the object.
DisplayName 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.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
Key string
(Updatable) Currently not used on application creation. Reserved for future.
ModelVersion string
(Updatable) The object's model version.
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.
RegistryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadataArgs
Information about the object and its parent.
SourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfoArgs
The information about the application.
State string
(Updatable) The current state of the workspace.
identifier This property is required. 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.
modelType This property is required. String
(Updatable) The type of the application.
workspaceId
This property is required.
Changes to this property will trigger replacement.
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

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description String
(Updatable) Detailed description for the object.
displayName 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.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
key String
(Updatable) Currently not used on application creation. Reserved for future.
modelVersion String
(Updatable) The object's model version.
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.
registryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
state String
(Updatable) The current state of the workspace.
identifier This property is required. 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.
modelType This property is required. string
(Updatable) The type of the application.
workspaceId
This property is required.
Changes to this property will trigger replacement.
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

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description string
(Updatable) Detailed description for the object.
displayName 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.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
key string
(Updatable) Currently not used on application creation. Reserved for future.
modelVersion string
(Updatable) The object's model version.
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.
registryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
state string
(Updatable) The current state of the workspace.
identifier This property is required. 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.
model_type This property is required. str
(Updatable) The type of the application.
workspace_id
This property is required.
Changes to this property will trigger replacement.
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

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description str
(Updatable) Detailed description for the object.
display_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.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
key str
(Updatable) Currently not used on application creation. Reserved for future.
model_version str
(Updatable) The object's model version.
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.
registry_metadata Changes to this property will trigger replacement. dataintegration.WorkspaceApplicationRegistryMetadataArgs
Information about the object and its parent.
source_application_info Changes to this property will trigger replacement. dataintegration.WorkspaceApplicationSourceApplicationInfoArgs
The information about the application.
state str
(Updatable) The current state of the workspace.
identifier This property is required. 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.
modelType This property is required. String
(Updatable) The type of the application.
workspaceId
This property is required.
Changes to this property will trigger replacement.
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

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
description String
(Updatable) Detailed description for the object.
displayName 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.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
key String
(Updatable) Currently not used on application creation. Reserved for future.
modelVersion String
(Updatable) The object's model version.
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.
registryMetadata Changes to this property will trigger replacement. Property Map
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. Property Map
The information about the application.
state String
(Updatable) The current state of the workspace.

Outputs

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

ApplicationVersion int
The source application version of the application.
CompartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
DependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
A list of dependent objects in this patch.
Id string
The provider-assigned unique ID for this managed resource.
KeyMap Dictionary<string, string>
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
Metadatas List<WorkspaceApplicationMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
ObjectVersion int
The object version.
ParentReves List<WorkspaceApplicationParentRef>
A reference to the object's parent.
PublishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
A list of objects that are published or unpublished in this patch.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
ApplicationVersion int
The source application version of the application.
CompartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
DependentObjectMetadatas []WorkspaceApplicationDependentObjectMetadata
A list of dependent objects in this patch.
Id string
The provider-assigned unique ID for this managed resource.
KeyMap map[string]string
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
Metadatas []WorkspaceApplicationMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
ObjectVersion int
The object version.
ParentReves []WorkspaceApplicationParentRef
A reference to the object's parent.
PublishedObjectMetadatas []WorkspaceApplicationPublishedObjectMetadata
A list of objects that are published or unpublished in this patch.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
applicationVersion Integer
The source application version of the application.
compartmentId String
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
dependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
A list of dependent objects in this patch.
id String
The provider-assigned unique ID for this managed resource.
keyMap Map<String,String>
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas List<WorkspaceApplicationMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
objectVersion Integer
The object version.
parentReves List<WorkspaceApplicationParentRef>
A reference to the object's parent.
publishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
A list of objects that are published or unpublished in this patch.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched String
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
applicationVersion number
The source application version of the application.
compartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
dependentObjectMetadatas WorkspaceApplicationDependentObjectMetadata[]
A list of dependent objects in this patch.
id string
The provider-assigned unique ID for this managed resource.
keyMap {[key: string]: string}
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas WorkspaceApplicationMetadata[]
A summary type containing information about the object including its key, name and when/who created/updated it.
objectVersion number
The object version.
parentReves WorkspaceApplicationParentRef[]
A reference to the object's parent.
publishedObjectMetadatas WorkspaceApplicationPublishedObjectMetadata[]
A list of objects that are published or unpublished in this patch.
timeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
application_version int
The source application version of the application.
compartment_id str
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
dependent_object_metadatas Sequence[dataintegration.WorkspaceApplicationDependentObjectMetadata]
A list of dependent objects in this patch.
id str
The provider-assigned unique ID for this managed resource.
key_map Mapping[str, str]
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas Sequence[dataintegration.WorkspaceApplicationMetadata]
A summary type containing information about the object including its key, name and when/who created/updated it.
object_version int
The object version.
parent_reves Sequence[dataintegration.WorkspaceApplicationParentRef]
A reference to the object's parent.
published_object_metadatas Sequence[dataintegration.WorkspaceApplicationPublishedObjectMetadata]
A list of objects that are published or unpublished in this patch.
time_created str
The date and time the application was created, in the timestamp format defined by RFC3339.
time_patched str
The date and time the application was patched, in the timestamp format defined by RFC3339.
time_updated str
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
applicationVersion Number
The source application version of the application.
compartmentId String
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
dependentObjectMetadatas List<Property Map>
A list of dependent objects in this patch.
id String
The provider-assigned unique ID for this managed resource.
keyMap Map<String>
A key map. If provided, 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.
objectVersion Number
The object version.
parentReves List<Property Map>
A reference to the object's parent.
publishedObjectMetadatas List<Property Map>
A list of objects that are published or unpublished in this patch.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched String
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z

Look up Existing WorkspaceApplication Resource

Get an existing WorkspaceApplication 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?: WorkspaceApplicationState, opts?: CustomResourceOptions): WorkspaceApplication
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_version: Optional[int] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        dependent_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationDependentObjectMetadataArgs]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        identifier: Optional[str] = None,
        key: Optional[str] = None,
        key_map: Optional[Mapping[str, str]] = None,
        metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationMetadataArgs]] = 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.WorkspaceApplicationParentRefArgs]] = None,
        published_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationPublishedObjectMetadataArgs]] = None,
        registry_metadata: Optional[_dataintegration.WorkspaceApplicationRegistryMetadataArgs] = None,
        source_application_info: Optional[_dataintegration.WorkspaceApplicationSourceApplicationInfoArgs] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_patched: Optional[str] = None,
        time_updated: Optional[str] = None,
        workspace_id: Optional[str] = None) -> WorkspaceApplication
func GetWorkspaceApplication(ctx *Context, name string, id IDInput, state *WorkspaceApplicationState, opts ...ResourceOption) (*WorkspaceApplication, error)
public static WorkspaceApplication Get(string name, Input<string> id, WorkspaceApplicationState? state, CustomResourceOptions? opts = null)
public static WorkspaceApplication get(String name, Output<String> id, WorkspaceApplicationState state, CustomResourceOptions options)
resources:  _:    type: oci:DataIntegration:WorkspaceApplication    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ApplicationVersion int
The source application version of the application.
CompartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
DependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
A list of dependent objects in this patch.
Description string
(Updatable) Detailed description for the object.
DisplayName 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.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
KeyMap Dictionary<string, string>
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
Metadatas List<WorkspaceApplicationMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType string
(Updatable) The type of the application.
ModelVersion string
(Updatable) The object's model version.
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 object version.
ParentReves List<WorkspaceApplicationParentRef>
A reference to the object's parent.
PublishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
A list of objects that are published or unpublished in this patch.
RegistryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
SourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
State string
(Updatable) The current state of the workspace.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
WorkspaceId Changes to this property will trigger replacement. 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

ApplicationVersion int
The source application version of the application.
CompartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
DependentObjectMetadatas []WorkspaceApplicationDependentObjectMetadataArgs
A list of dependent objects in this patch.
Description string
(Updatable) Detailed description for the object.
DisplayName 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.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
KeyMap map[string]string
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
Metadatas []WorkspaceApplicationMetadataArgs
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType string
(Updatable) The type of the application.
ModelVersion string
(Updatable) The object's model version.
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 object version.
ParentReves []WorkspaceApplicationParentRefArgs
A reference to the object's parent.
PublishedObjectMetadatas []WorkspaceApplicationPublishedObjectMetadataArgs
A list of objects that are published or unpublished in this patch.
RegistryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadataArgs
Information about the object and its parent.
SourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfoArgs
The information about the application.
State string
(Updatable) The current state of the workspace.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
WorkspaceId Changes to this property will trigger replacement. 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

applicationVersion Integer
The source application version of the application.
compartmentId String
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
dependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
A list of dependent objects in this patch.
description String
(Updatable) Detailed description for the object.
displayName 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.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
keyMap Map<String,String>
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas List<WorkspaceApplicationMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType String
(Updatable) The type of the application.
modelVersion String
(Updatable) The object's model version.
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 object version.
parentReves List<WorkspaceApplicationParentRef>
A reference to the object's parent.
publishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
A list of objects that are published or unpublished in this patch.
registryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
state String
(Updatable) The current state of the workspace.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched String
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
workspaceId Changes to this property will trigger replacement. 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

applicationVersion number
The source application version of the application.
compartmentId string
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
dependentObjectMetadatas WorkspaceApplicationDependentObjectMetadata[]
A list of dependent objects in this patch.
description string
(Updatable) Detailed description for the object.
displayName 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.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
keyMap {[key: string]: string}
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas WorkspaceApplicationMetadata[]
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType string
(Updatable) The type of the application.
modelVersion string
(Updatable) The object's model version.
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 object version.
parentReves WorkspaceApplicationParentRef[]
A reference to the object's parent.
publishedObjectMetadatas WorkspaceApplicationPublishedObjectMetadata[]
A list of objects that are published or unpublished in this patch.
registryMetadata Changes to this property will trigger replacement. WorkspaceApplicationRegistryMetadata
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. WorkspaceApplicationSourceApplicationInfo
The information about the application.
state string
(Updatable) The current state of the workspace.
timeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched string
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
workspaceId Changes to this property will trigger replacement. 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

application_version int
The source application version of the application.
compartment_id str
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
dependent_object_metadatas Sequence[dataintegration.WorkspaceApplicationDependentObjectMetadataArgs]
A list of dependent objects in this patch.
description str
(Updatable) Detailed description for the object.
display_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.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
key_map Mapping[str, str]
A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
metadatas Sequence[dataintegration.WorkspaceApplicationMetadataArgs]
A summary type containing information about the object including its key, name and when/who created/updated it.
model_type str
(Updatable) The type of the application.
model_version str
(Updatable) The object's model version.
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 object version.
parent_reves Sequence[dataintegration.WorkspaceApplicationParentRefArgs]
A reference to the object's parent.
published_object_metadatas Sequence[dataintegration.WorkspaceApplicationPublishedObjectMetadataArgs]
A list of objects that are published or unpublished in this patch.
registry_metadata Changes to this property will trigger replacement. dataintegration.WorkspaceApplicationRegistryMetadataArgs
Information about the object and its parent.
source_application_info Changes to this property will trigger replacement. dataintegration.WorkspaceApplicationSourceApplicationInfoArgs
The information about the application.
state str
(Updatable) The current state of the workspace.
time_created str
The date and time the application was created, in the timestamp format defined by RFC3339.
time_patched str
The date and time the application was patched, in the timestamp format defined by RFC3339.
time_updated str
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
workspace_id Changes to this property will trigger replacement. 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

applicationVersion Number
The source application version of the application.
compartmentId String
OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
dependentObjectMetadatas List<Property Map>
A list of dependent objects in this patch.
description String
(Updatable) Detailed description for the object.
displayName 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.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
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) Currently not used on application creation. Reserved for future.
keyMap Map<String>
A key map. If provided, 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
(Updatable) The type of the application.
modelVersion String
(Updatable) The object's model version.
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 object version.
parentReves List<Property Map>
A reference to the object's parent.
publishedObjectMetadatas List<Property Map>
A list of objects that are published or unpublished in this patch.
registryMetadata Changes to this property will trigger replacement. Property Map
Information about the object and its parent.
sourceApplicationInfo Changes to this property will trigger replacement. Property Map
The information about the application.
state String
(Updatable) The current state of the workspace.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timePatched String
The date and time the application was patched, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
workspaceId Changes to this property will trigger replacement. 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

WorkspaceApplicationDependentObjectMetadata
, WorkspaceApplicationDependentObjectMetadataArgs

Action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
NamePath string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion int
The object version.
Type string
The type of the object in patch.
Action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
NamePath string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion int
The object version.
Type string
The type of the object in patch.
action String
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath String
The fully qualified path of the published object, which would include its project and folder.
objectVersion Integer
The object version.
type String
The type of the object in patch.
action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath string
The fully qualified path of the published object, which would include its project and folder.
objectVersion number
The object version.
type string
The type of the object in patch.
action str
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
name_path str
The fully qualified path of the published object, which would include its project and folder.
object_version int
The object version.
type str
The type of the object in patch.
action String
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath String
The fully qualified path of the published object, which would include its project and folder.
objectVersion Number
The object version.
type String
The type of the object in patch.

WorkspaceApplicationMetadata
, WorkspaceApplicationMetadataArgs

AggregatorKey string
The owning object key for this object.
Aggregators List<WorkspaceApplicationMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics List<WorkspaceApplicationMetadataCountStatistic>
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, string>
Information property fields.
IsFavorite 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.
RegistryVersion int
The registry version of the object.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
UpdatedBy string
The user that updated the object.
UpdatedByName string
The user that updated the object.
AggregatorKey string
The owning object key for this object.
Aggregators []WorkspaceApplicationMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics []WorkspaceApplicationMetadataCountStatistic
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]string
Information property fields.
IsFavorite 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.
RegistryVersion int
The registry version of the object.
TimeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
TimeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
UpdatedBy string
The user that updated the object.
UpdatedByName string
The user that updated the object.
aggregatorKey String
The owning object key for this object.
aggregators List<WorkspaceApplicationMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics List<WorkspaceApplicationMetadataCountStatistic>
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,String>
Information property fields.
isFavorite 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.
registryVersion Integer
The registry version of the object.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
updatedBy String
The user that updated the object.
updatedByName String
The user that updated the object.
aggregatorKey string
The owning object key for this object.
aggregators WorkspaceApplicationMetadataAggregator[]
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics WorkspaceApplicationMetadataCountStatistic[]
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]: string}
Information property fields.
isFavorite 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.
registryVersion number
The registry version of the object.
timeCreated string
The date and time the application was created, in the timestamp format defined by RFC3339.
timeUpdated string
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
updatedBy string
The user that updated the object.
updatedByName string
The user that updated the object.
aggregator_key str
The owning object key for this object.
aggregators Sequence[dataintegration.WorkspaceApplicationMetadataAggregator]
A summary type containing information about the object's aggregator including its type, key, name and description.
count_statistics Sequence[dataintegration.WorkspaceApplicationMetadataCountStatistic]
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, str]
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 the application was created, in the timestamp format defined by RFC3339.
time_updated str
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
updated_by str
The user that updated the object.
updated_by_name str
The user that updated the object.
aggregatorKey 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.
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<String>
Information property fields.
isFavorite 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.
registryVersion Number
The registry version of the object.
timeCreated String
The date and time the application was created, in the timestamp format defined by RFC3339.
timeUpdated String
The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
updatedBy String
The user that updated the object.
updatedByName String
The user that updated the object.

WorkspaceApplicationMetadataAggregator
, WorkspaceApplicationMetadataAggregatorArgs

Description string
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.
Description string
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.
description String
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.
description string
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.
description str
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.
description String
(Updatable) Detailed description for the object.
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) Currently not used on application creation. Reserved for future.
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 object in patch.

WorkspaceApplicationMetadataCountStatistic
, WorkspaceApplicationMetadataCountStatisticArgs

WorkspaceApplicationMetadataCountStatisticObjectTypeCountList
, WorkspaceApplicationMetadataCountStatisticObjectTypeCountListArgs

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.

WorkspaceApplicationParentRef
, WorkspaceApplicationParentRefArgs

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.

WorkspaceApplicationPublishedObjectMetadata
, WorkspaceApplicationPublishedObjectMetadataArgs

Action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
NamePath string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion int
The object version.
Type string
The type of the object in patch.
Action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
NamePath string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion int
The object version.
Type string
The type of the object in patch.
action String
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath String
The fully qualified path of the published object, which would include its project and folder.
objectVersion Integer
The object version.
type String
The type of the object in patch.
action string
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath string
The fully qualified path of the published object, which would include its project and folder.
objectVersion number
The object version.
type string
The type of the object in patch.
action str
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
name_path str
The fully qualified path of the published object, which would include its project and folder.
object_version int
The object version.
type str
The type of the object in patch.
action String
The patch action indicating if object was created, updated, or deleted.
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) Currently not used on application creation. Reserved for future.
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.
namePath String
The fully qualified path of the published object, which would include its project and folder.
objectVersion Number
The object version.
type String
The type of the object in patch.

WorkspaceApplicationRegistryMetadata
, WorkspaceApplicationRegistryMetadataArgs

AggregatorKey Changes to this property will trigger replacement. string
The owning object's key for this object.
IsFavorite Changes to this property will trigger replacement. bool
Specifies whether this object is a favorite or not.
Key Changes to this property will trigger replacement. string
The identifying key for the object.
Labels Changes to this property will trigger replacement. List<string>
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 Changes to this property will trigger replacement. int
The registry version.
AggregatorKey Changes to this property will trigger replacement. string
The owning object's key for this object.
IsFavorite Changes to this property will trigger replacement. bool
Specifies whether this object is a favorite or not.
Key Changes to this property will trigger replacement. string
The identifying key for the object.
Labels Changes to this property will trigger replacement. []string
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 Changes to this property will trigger replacement. int
The registry version.
aggregatorKey Changes to this property will trigger replacement. String
The owning object's key for this object.
isFavorite Changes to this property will trigger replacement. Boolean
Specifies whether this object is a favorite or not.
key Changes to this property will trigger replacement. String
The identifying key for the object.
labels Changes to this property will trigger replacement. List<String>
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 Changes to this property will trigger replacement. Integer
The registry version.
aggregatorKey Changes to this property will trigger replacement. string
The owning object's key for this object.
isFavorite Changes to this property will trigger replacement. boolean
Specifies whether this object is a favorite or not.
key Changes to this property will trigger replacement. string
The identifying key for the object.
labels Changes to this property will trigger replacement. string[]
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 Changes to this property will trigger replacement. number
The registry version.
aggregator_key Changes to this property will trigger replacement. str
The owning object's key for this object.
is_favorite Changes to this property will trigger replacement. bool
Specifies whether this object is a favorite or not.
key Changes to this property will trigger replacement. str
The identifying key for the object.
labels Changes to this property will trigger replacement. Sequence[str]
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 Changes to this property will trigger replacement. int
The registry version.
aggregatorKey Changes to this property will trigger replacement. String
The owning object's key for this object.
isFavorite Changes to this property will trigger replacement. Boolean
Specifies whether this object is a favorite or not.
key Changes to this property will trigger replacement. String
The identifying key for the object.
labels Changes to this property will trigger replacement. List<String>
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 Changes to this property will trigger replacement. Number
The registry version.

WorkspaceApplicationSourceApplicationInfo
, WorkspaceApplicationSourceApplicationInfoArgs

ApplicationKey Changes to this property will trigger replacement. string
The source application key to use when creating the application.
ApplicationVersion string
The source application version of the application.
CopyType Changes to this property will trigger replacement. string
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
LastPatchKey string
The last patch key for the application.
WorkspaceId Changes to this property will trigger replacement. string
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
ApplicationKey Changes to this property will trigger replacement. string
The source application key to use when creating the application.
ApplicationVersion string
The source application version of the application.
CopyType Changes to this property will trigger replacement. string
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
LastPatchKey string
The last patch key for the application.
WorkspaceId Changes to this property will trigger replacement. string
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
applicationKey Changes to this property will trigger replacement. String
The source application key to use when creating the application.
applicationVersion String
The source application version of the application.
copyType Changes to this property will trigger replacement. String
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
lastPatchKey String
The last patch key for the application.
workspaceId Changes to this property will trigger replacement. String
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
applicationKey Changes to this property will trigger replacement. string
The source application key to use when creating the application.
applicationVersion string
The source application version of the application.
copyType Changes to this property will trigger replacement. string
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
lastPatchKey string
The last patch key for the application.
workspaceId Changes to this property will trigger replacement. string
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
application_key Changes to this property will trigger replacement. str
The source application key to use when creating the application.
application_version str
The source application version of the application.
copy_type Changes to this property will trigger replacement. str
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
last_patch_key str
The last patch key for the application.
workspace_id Changes to this property will trigger replacement. str
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
applicationKey Changes to this property will trigger replacement. String
The source application key to use when creating the application.
applicationVersion String
The source application version of the application.
copyType Changes to this property will trigger replacement. String
Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
lastPatchKey String
The last patch key for the application.
workspaceId Changes to this property will trigger replacement. String
The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.

Import

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

$ pulumi import oci:DataIntegration/workspaceApplication:WorkspaceApplication test_workspace_application "workspaces/{workspaceId}/applications/{applicationKey}"
Copy

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.