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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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 string
- The unique name of the resource.
- args WorkspaceApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args WorkspaceApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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 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 string
- (Updatable) The type of the application.
- WorkspaceId string
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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.
- 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 WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- SourceApplication WorkspaceInfo Application Source Application Info 
- The information about the application.
- State string
- (Updatable) The current state of the workspace.
- 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.
- ModelType string
- (Updatable) The type of the application.
- WorkspaceId string
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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.
- 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 WorkspaceApplication Registry Metadata Args 
- Information about the object and its parent.
- SourceApplication WorkspaceInfo Application Source Application Info Args 
- The information about the application.
- State string
- (Updatable) The current state of the workspace.
- 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.
- modelType String
- (Updatable) The type of the application.
- workspaceId String
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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.
- 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 WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- sourceApplication WorkspaceInfo Application Source Application Info 
- The information about the application.
- state String
- (Updatable) The current state of the workspace.
- 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.
- modelType string
- (Updatable) The type of the application.
- workspaceId string
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[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.
- {[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 WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- sourceApplication WorkspaceInfo Application Source Application Info 
- The information about the application.
- state string
- (Updatable) The current state of the workspace.
- 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.
- model_type str
- (Updatable) The type of the application.
- workspace_id str
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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.
- 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 dataintegration.Workspace Application Registry Metadata Args 
- Information about the object and its parent.
- source_application_ dataintegration.info Workspace Application Source Application Info Args 
- The information about the application.
- state str
- (Updatable) The current state of the workspace.
- 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.
- modelType String
- (Updatable) The type of the application.
- workspaceId String
- The workspace ID. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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.
- 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 Property Map
- Information about the object and its parent.
- sourceApplication Property MapInfo 
- 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.
- DependentObject List<WorkspaceMetadatas Application Dependent Object Metadata> 
- 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<WorkspaceApplication Metadata> 
- 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<WorkspaceApplication Parent Ref> 
- A reference to the object's parent.
- PublishedObject List<WorkspaceMetadatas Application Published Object Metadata> 
- 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.
- DependentObject []WorkspaceMetadatas Application Dependent Object Metadata 
- 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
[]WorkspaceApplication Metadata 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- ObjectVersion int
- The object version.
- ParentReves []WorkspaceApplication Parent Ref 
- A reference to the object's parent.
- PublishedObject []WorkspaceMetadatas Application Published Object Metadata 
- 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.
- dependentObject List<WorkspaceMetadatas Application Dependent Object Metadata> 
- 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<WorkspaceApplication Metadata> 
- 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<WorkspaceApplication Parent Ref> 
- A reference to the object's parent.
- publishedObject List<WorkspaceMetadatas Application Published Object Metadata> 
- 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.
- dependentObject WorkspaceMetadatas Application Dependent Object Metadata[] 
- 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
WorkspaceApplication Metadata[] 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- objectVersion number
- The object version.
- parentReves WorkspaceApplication Parent Ref[] 
- A reference to the object's parent.
- publishedObject WorkspaceMetadatas Application Published Object Metadata[] 
- 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_ Sequence[dataintegration.metadatas Workspace Application Dependent Object Metadata] 
- 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.Workspace Application Metadata] 
- 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.Workspace Application Parent Ref] 
- A reference to the object's parent.
- published_object_ Sequence[dataintegration.metadatas Workspace Application Published Object Metadata] 
- 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.
- dependentObject List<Property Map>Metadatas 
- 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.
- publishedObject List<Property Map>Metadatas 
- 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) -> WorkspaceApplicationfunc 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- 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.
- 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"}
- DependentObject List<WorkspaceMetadatas Application Dependent Object Metadata> 
- 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.
- 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<WorkspaceApplication Metadata> 
- 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<WorkspaceApplication Parent Ref> 
- A reference to the object's parent.
- PublishedObject List<WorkspaceMetadatas Application Published Object Metadata> 
- A list of objects that are published or unpublished in this patch.
- RegistryMetadata WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- SourceApplication WorkspaceInfo Application Source Application Info 
- 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 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.
- 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"}
- DependentObject []WorkspaceMetadatas Application Dependent Object Metadata Args 
- 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.
- 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
[]WorkspaceApplication Metadata Args 
- 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 []WorkspaceApplication Parent Ref Args 
- A reference to the object's parent.
- PublishedObject []WorkspaceMetadatas Application Published Object Metadata Args 
- A list of objects that are published or unpublished in this patch.
- RegistryMetadata WorkspaceApplication Registry Metadata Args 
- Information about the object and its parent.
- SourceApplication WorkspaceInfo Application Source Application Info Args 
- 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 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.
- 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"}
- dependentObject List<WorkspaceMetadatas Application Dependent Object Metadata> 
- 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.
- 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<WorkspaceApplication Metadata> 
- 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<WorkspaceApplication Parent Ref> 
- A reference to the object's parent.
- publishedObject List<WorkspaceMetadatas Application Published Object Metadata> 
- A list of objects that are published or unpublished in this patch.
- registryMetadata WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- sourceApplication WorkspaceInfo Application Source Application Info 
- 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 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.
- {[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"}
- dependentObject WorkspaceMetadatas Application Dependent Object Metadata[] 
- 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.
- {[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
WorkspaceApplication Metadata[] 
- 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 WorkspaceApplication Parent Ref[] 
- A reference to the object's parent.
- publishedObject WorkspaceMetadatas Application Published Object Metadata[] 
- A list of objects that are published or unpublished in this patch.
- registryMetadata WorkspaceApplication Registry Metadata 
- Information about the object and its parent.
- sourceApplication WorkspaceInfo Application Source Application Info 
- 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 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.
- 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_ Sequence[dataintegration.metadatas Workspace Application Dependent Object Metadata Args] 
- 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.
- 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.Workspace Application Metadata Args] 
- 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.Workspace Application Parent Ref Args] 
- A reference to the object's parent.
- published_object_ Sequence[dataintegration.metadatas Workspace Application Published Object Metadata Args] 
- A list of objects that are published or unpublished in this patch.
- registry_metadata dataintegration.Workspace Application Registry Metadata Args 
- Information about the object and its parent.
- source_application_ dataintegration.info Workspace Application Source Application Info Args 
- 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 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.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- dependentObject List<Property Map>Metadatas 
- 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.
- 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.
- publishedObject List<Property Map>Metadatas 
- A list of objects that are published or unpublished in this patch.
- registryMetadata Property Map
- Information about the object and its parent.
- sourceApplication Property MapInfo 
- 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 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<WorkspaceApplication Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics List<WorkspaceApplication Metadata Count Statistic> 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- 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.
- UpdatedBy stringName 
- The user that updated the object.
- AggregatorKey string
- The owning object key for this object.
- Aggregators
[]WorkspaceApplication Metadata Aggregator 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics []WorkspaceApplication Metadata Count Statistic 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- 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.
- UpdatedBy stringName 
- The user that updated the object.
- aggregatorKey String
- The owning object key for this object.
- aggregators
List<WorkspaceApplication Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics List<WorkspaceApplication Metadata Count Statistic> 
- A count statistics.
- createdBy String
- The user that created the object.
- createdBy StringName 
- 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.
- updatedBy StringName 
- The user that updated the object.
- aggregatorKey string
- The owning object key for this object.
- aggregators
WorkspaceApplication Metadata Aggregator[] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics WorkspaceApplication Metadata Count Statistic[] 
- A count statistics.
- createdBy string
- The user that created the object.
- createdBy stringName 
- 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.
- updatedBy stringName 
- The user that updated the object.
- aggregator_key str
- The owning object key for this object.
- aggregators
Sequence[dataintegration.Workspace Application Metadata Aggregator] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- count_statistics Sequence[dataintegration.Workspace Application Metadata Count Statistic] 
- A count statistics.
- created_by str
- The user that created the object.
- created_by_ strname 
- The user that created the object.
- identifier_path str
- The full path to identify this object.
- info_fields Mapping[str, 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_ strname 
- 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.
- createdBy StringName 
- 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.
- updatedBy StringName 
- 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          
- ObjectType List<WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List> 
- The array of statistics.
- ObjectType []WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List 
- The array of statistics.
- objectType List<WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List> 
- The array of statistics.
- objectType WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List[] 
- The array of statistics.
- objectType List<Property Map>Count Lists 
- The array of statistics.
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 str
- Key of the parent object.
- root_doc_ strid 
- 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 string
- The owning object's key for this object.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Key string
- The identifying key for the object.
- Labels 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 int
- The registry version.
- AggregatorKey string
- The owning object's key for this object.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Key string
- The identifying key for the object.
- Labels []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 int
- The registry version.
- aggregatorKey String
- The owning object's key for this object.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- key String
- The identifying key for the object.
- labels 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 Integer
- The registry version.
- aggregatorKey string
- The owning object's key for this object.
- isFavorite boolean
- Specifies whether this object is a favorite or not.
- key string
- The identifying key for the object.
- labels 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 number
- The registry version.
- aggregator_key str
- The owning object's key for this object.
- is_favorite bool
- Specifies whether this object is a favorite or not.
- key str
- The identifying key for the object.
- labels 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 int
- The registry version.
- aggregatorKey String
- The owning object's key for this object.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- key String
- The identifying key for the object.
- labels 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 Number
- The registry version.
WorkspaceApplicationSourceApplicationInfo, WorkspaceApplicationSourceApplicationInfoArgs          
- ApplicationKey string
- The source application key to use when creating the application.
- ApplicationVersion string
- The source application version of the application.
- CopyType 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.
- LastPatch stringKey 
- The last patch key for the application.
- WorkspaceId 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 string
- The source application key to use when creating the application.
- ApplicationVersion string
- The source application version of the application.
- CopyType 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.
- LastPatch stringKey 
- The last patch key for the application.
- WorkspaceId 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 String
- The source application key to use when creating the application.
- applicationVersion String
- The source application version of the application.
- copyType 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.
- lastPatch StringKey 
- The last patch key for the application.
- workspaceId 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 string
- The source application key to use when creating the application.
- applicationVersion string
- The source application version of the application.
- copyType 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.
- lastPatch stringKey 
- The last patch key for the application.
- workspaceId 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 str
- The source application key to use when creating the application.
- application_version str
- The source application version of the application.
- copy_type 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_ strkey 
- The last patch key for the application.
- workspace_id 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 String
- The source application key to use when creating the application.
- applicationVersion String
- The source application version of the application.
- copyType 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.
- lastPatch StringKey 
- The last patch key for the application.
- workspaceId 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}"
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 ociTerraform Provider.