1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. WorkspaceApplication
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.DataIntegration.WorkspaceApplication

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    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=oci.data_integration.WorkspaceApplicationRegistryMetadataArgs(
            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=oci.data_integration.WorkspaceApplicationSourceApplicationInfoArgs(
            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/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.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(workspaceApplicationDescription),
    			DisplayName: pulumi.Any(workspaceApplicationDisplayName),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("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, Any]] = None,
                             defined_tags: Optional[Mapping[str, Any]] = 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.

    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", "any" },
        },
        DefinedTags = 
        {
            { "string", "any" },
        },
        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.Map{
    		"string": pulumi.Any("any"),
    	},
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	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", "any"))
        .definedTags(Map.of("string", "any"))
        .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": "any",
        },
        defined_tags={
            "string": "any",
        },
        key="string",
        display_name="string",
        model_version="string",
        name="string",
        object_status=0,
        registry_metadata=oci.data_integration.WorkspaceApplicationRegistryMetadataArgs(
            aggregator_key="string",
            is_favorite=False,
            key="string",
            labels=["string"],
            registry_version=0,
        ),
        source_application_info=oci.data_integration.WorkspaceApplicationSourceApplicationInfoArgs(
            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: "any",
        },
        definedTags: {
            string: "any",
        },
        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: any
        description: string
        displayName: string
        freeformTags:
            string: any
        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

    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

    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) Detailed description for the object.
    DisplayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    FreeformTags Dictionary<string, object>
    (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
    The identifying key for the object.
    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 WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    SourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    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

    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) Detailed description for the object.
    DisplayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    FreeformTags map[string]interface{}
    (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
    The identifying key for the object.
    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 WorkspaceApplicationRegistryMetadataArgs
    Information about the object and its parent.
    SourceApplicationInfo WorkspaceApplicationSourceApplicationInfoArgs
    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

    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) Detailed description for the object.
    displayName String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags Map<String,Object>
    (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
    The identifying key for the object.
    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 WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    sourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    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

    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) Detailed description for the object.
    displayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags {[key: string]: any}
    (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
    The identifying key for the object.
    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 WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    sourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    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

    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) Detailed description for the object.
    display_name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeform_tags Mapping[str, Any]
    (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
    The identifying key for the object.
    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.WorkspaceApplicationRegistryMetadataArgs
    Information about the object and its parent.
    source_application_info dataintegration.WorkspaceApplicationSourceApplicationInfoArgs
    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

    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) Detailed description for the object.
    displayName String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags Map<Any>
    (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
    The identifying key for the object.
    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.
    sourceApplicationInfo Property Map
    The information about the application.
    state String
    (Updatable) The current state of the workspace.

    Outputs

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

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

    Look up Existing WorkspaceApplication Resource

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

    public static get(name: string, id: Input<ID>, state?: WorkspaceApplicationState, opts?: CustomResourceOptions): WorkspaceApplication
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_version: Optional[int] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            dependent_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationDependentObjectMetadataArgs]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            identifier: Optional[str] = None,
            key: Optional[str] = None,
            key_map: Optional[Mapping[str, Any]] = None,
            metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationMetadataArgs]] = None,
            model_type: Optional[str] = None,
            model_version: Optional[str] = None,
            name: Optional[str] = None,
            object_status: Optional[int] = None,
            object_version: Optional[int] = None,
            parent_reves: Optional[Sequence[_dataintegration.WorkspaceApplicationParentRefArgs]] = None,
            published_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationPublishedObjectMetadataArgs]] = None,
            registry_metadata: Optional[_dataintegration.WorkspaceApplicationRegistryMetadataArgs] = None,
            source_application_info: Optional[_dataintegration.WorkspaceApplicationSourceApplicationInfoArgs] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_patched: Optional[str] = None,
            time_updated: Optional[str] = None,
            workspace_id: Optional[str] = None) -> WorkspaceApplication
    func GetWorkspaceApplication(ctx *Context, name string, id IDInput, state *WorkspaceApplicationState, opts ...ResourceOption) (*WorkspaceApplication, error)
    public static WorkspaceApplication Get(string name, Input<string> id, WorkspaceApplicationState? state, CustomResourceOptions? opts = null)
    public static WorkspaceApplication get(String name, Output<String> id, WorkspaceApplicationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationVersion int
    The source application version of the application.
    CompartmentId string
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
    A list of dependent objects in this patch.
    Description string
    (Updatable) Detailed description for the object.
    DisplayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    FreeformTags Dictionary<string, object>
    (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
    The identifying key for the object.
    KeyMap Dictionary<string, object>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas List<WorkspaceApplicationMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the application.
    ModelVersion string
    (Updatable) The object's model version.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    The object version.
    ParentReves List<WorkspaceApplicationParentRef>
    A reference to the object's parent.
    PublishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
    A list of objects that are published or unpublished in this patch.
    RegistryMetadata WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    SourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    The information about the application.
    State string
    (Updatable) The current state of the workspace.
    TimeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    TimePatched string
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ApplicationVersion int
    The source application version of the application.
    CompartmentId string
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DependentObjectMetadatas []WorkspaceApplicationDependentObjectMetadataArgs
    A list of dependent objects in this patch.
    Description string
    (Updatable) Detailed description for the object.
    DisplayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    FreeformTags map[string]interface{}
    (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
    The identifying key for the object.
    KeyMap map[string]interface{}
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas []WorkspaceApplicationMetadataArgs
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the application.
    ModelVersion string
    (Updatable) The object's model version.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    The object version.
    ParentReves []WorkspaceApplicationParentRefArgs
    A reference to the object's parent.
    PublishedObjectMetadatas []WorkspaceApplicationPublishedObjectMetadataArgs
    A list of objects that are published or unpublished in this patch.
    RegistryMetadata WorkspaceApplicationRegistryMetadataArgs
    Information about the object and its parent.
    SourceApplicationInfo WorkspaceApplicationSourceApplicationInfoArgs
    The information about the application.
    State string
    (Updatable) The current state of the workspace.
    TimeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    TimePatched string
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationVersion Integer
    The source application version of the application.
    compartmentId String
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    dependentObjectMetadatas List<WorkspaceApplicationDependentObjectMetadata>
    A list of dependent objects in this patch.
    description String
    (Updatable) Detailed description for the object.
    displayName String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags Map<String,Object>
    (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
    The identifying key for the object.
    keyMap Map<String,Object>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<WorkspaceApplicationMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the application.
    modelVersion String
    (Updatable) The object's model version.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Integer
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Integer
    The object version.
    parentReves List<WorkspaceApplicationParentRef>
    A reference to the object's parent.
    publishedObjectMetadatas List<WorkspaceApplicationPublishedObjectMetadata>
    A list of objects that are published or unpublished in this patch.
    registryMetadata WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    sourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    The information about the application.
    state String
    (Updatable) The current state of the workspace.
    timeCreated String
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timePatched String
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    workspaceId String

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationVersion number
    The source application version of the application.
    compartmentId string
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    dependentObjectMetadatas WorkspaceApplicationDependentObjectMetadata[]
    A list of dependent objects in this patch.
    description string
    (Updatable) Detailed description for the object.
    displayName string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags {[key: string]: any}
    (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
    The identifying key for the object.
    keyMap {[key: string]: any}
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas WorkspaceApplicationMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    (Updatable) The type of the application.
    modelVersion string
    (Updatable) The object's model version.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion number
    The object version.
    parentReves WorkspaceApplicationParentRef[]
    A reference to the object's parent.
    publishedObjectMetadatas WorkspaceApplicationPublishedObjectMetadata[]
    A list of objects that are published or unpublished in this patch.
    registryMetadata WorkspaceApplicationRegistryMetadata
    Information about the object and its parent.
    sourceApplicationInfo WorkspaceApplicationSourceApplicationInfo
    The information about the application.
    state string
    (Updatable) The current state of the workspace.
    timeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timePatched string
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    timeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    workspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    application_version int
    The source application version of the application.
    compartment_id str
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    dependent_object_metadatas Sequence[dataintegration.WorkspaceApplicationDependentObjectMetadataArgs]
    A list of dependent objects in this patch.
    description str
    (Updatable) Detailed description for the object.
    display_name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeform_tags Mapping[str, Any]
    (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
    The identifying key for the object.
    key_map Mapping[str, Any]
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas Sequence[dataintegration.WorkspaceApplicationMetadataArgs]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    (Updatable) The type of the application.
    model_version str
    (Updatable) The object's model version.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_status int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    object_version int
    The object version.
    parent_reves Sequence[dataintegration.WorkspaceApplicationParentRefArgs]
    A reference to the object's parent.
    published_object_metadatas Sequence[dataintegration.WorkspaceApplicationPublishedObjectMetadataArgs]
    A list of objects that are published or unpublished in this patch.
    registry_metadata dataintegration.WorkspaceApplicationRegistryMetadataArgs
    Information about the object and its parent.
    source_application_info dataintegration.WorkspaceApplicationSourceApplicationInfoArgs
    The information about the application.
    state str
    (Updatable) The current state of the workspace.
    time_created str
    The date and time the application was created, in the timestamp format defined by RFC3339.
    time_patched str
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    time_updated str
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    workspace_id str

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationVersion Number
    The source application version of the application.
    compartmentId String
    OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    dependentObjectMetadatas List<Property Map>
    A list of dependent objects in this patch.
    description String
    (Updatable) Detailed description for the object.
    displayName String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    freeformTags Map<Any>
    (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
    The identifying key for the object.
    keyMap Map<Any>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the application.
    modelVersion String
    (Updatable) The object's model version.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Number
    The object version.
    parentReves List<Property Map>
    A reference to the object's parent.
    publishedObjectMetadatas List<Property Map>
    A list of objects that are published or unpublished in this patch.
    registryMetadata Property Map
    Information about the object and its parent.
    sourceApplicationInfo Property Map
    The information about the application.
    state String
    (Updatable) The current state of the workspace.
    timeCreated String
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timePatched String
    The date and time the application was patched, in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    workspaceId 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
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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's key for this object.
    Aggregators List<WorkspaceApplicationMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<WorkspaceApplicationMetadataCountStatistic>
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields Dictionary<string, object>
    Information property fields.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    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.
    TimeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    AggregatorKey string
    The owning object's key for this object.
    Aggregators []WorkspaceApplicationMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []WorkspaceApplicationMetadataCountStatistic
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields map[string]interface{}
    Information property fields.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    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.
    TimeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    aggregatorKey String
    The owning object's key for this object.
    aggregators List<WorkspaceApplicationMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<WorkspaceApplicationMetadataCountStatistic>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<String,Object>
    Information property fields.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    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.
    timeCreated String
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.
    aggregatorKey string
    The owning object's key for this object.
    aggregators WorkspaceApplicationMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics WorkspaceApplicationMetadataCountStatistic[]
    A count statistics.
    createdBy string
    The user that created the object.
    createdByName string
    The user that created the object.
    identifierPath string
    The full path to identify this object.
    infoFields {[key: string]: any}
    Information property fields.
    isFavorite boolean
    Specifies whether this object is a favorite or not.
    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.
    timeCreated string
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timeUpdated string
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    updatedBy string
    The user that updated the object.
    updatedByName string
    The user that updated the object.
    aggregator_key str
    The owning object's key for this object.
    aggregators Sequence[dataintegration.WorkspaceApplicationMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.WorkspaceApplicationMetadataCountStatistic]
    A count statistics.
    created_by str
    The user that created the object.
    created_by_name str
    The user that created the object.
    identifier_path str
    The full path to identify this object.
    info_fields Mapping[str, Any]
    Information property fields.
    is_favorite bool
    Specifies whether this object is a favorite or not.
    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.
    time_created str
    The date and time the application was created, in the timestamp format defined by RFC3339.
    time_updated str
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    updated_by str
    The user that updated the object.
    updated_by_name str
    The user that updated the object.
    aggregatorKey String
    The owning object's key for this object.
    aggregators List<Property Map>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<Property Map>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<Any>
    Information property fields.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    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.
    timeCreated String
    The date and time the application was created, in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.

    WorkspaceApplicationMetadataAggregator, WorkspaceApplicationMetadataAggregatorArgs

    Description string
    (Updatable) Detailed description for the object.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the 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
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the 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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the 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
    The identifying key for the object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type string
    The type of the 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
    The identifying key for the object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type str
    The type of the 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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the object in patch.

    WorkspaceApplicationMetadataCountStatistic, WorkspaceApplicationMetadataCountStatisticArgs

    WorkspaceApplicationMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationMetadataCountStatisticObjectTypeCountListArgs

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

    WorkspaceApplicationParentRef, WorkspaceApplicationParentRefArgs

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

    WorkspaceApplicationPublishedObjectMetadata, WorkspaceApplicationPublishedObjectMetadataArgs

    Action string
    The patch action indicating if object was created, updated, or deleted.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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
    The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    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.
    LastPatchKey string
    The last patch key for 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

    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.
    LastPatchKey string
    The last patch key for 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

    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.
    lastPatchKey String
    The last patch key for 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

    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.
    lastPatchKey string
    The last patch key for 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

    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_key str
    The last patch key for 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

    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.
    lastPatchKey String
    The last patch key for 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

    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi