oci.DataIntegration.WorkspaceApplication
Explore with Pulumi AI
This resource provides the Workspace Application resource in Oracle Cloud Infrastructure Data Integration service.
Creates an application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceApplication = new oci.dataintegration.WorkspaceApplication("test_workspace_application", {
identifier: workspaceApplicationIdentifier,
name: workspaceApplicationName,
workspaceId: testWorkspace.id,
modelType: workspaceApplicationModelType,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: workspaceApplicationDescription,
displayName: workspaceApplicationDisplayName,
freeformTags: {
"bar-key": "value",
},
key: workspaceApplicationKey,
modelVersion: workspaceApplicationModelVersion,
objectStatus: workspaceApplicationObjectStatus,
registryMetadata: {
aggregatorKey: workspaceApplicationRegistryMetadataAggregatorKey,
isFavorite: workspaceApplicationRegistryMetadataIsFavorite,
key: workspaceApplicationRegistryMetadataKey,
labels: workspaceApplicationRegistryMetadataLabels,
registryVersion: workspaceApplicationRegistryMetadataRegistryVersion,
},
sourceApplicationInfo: {
applicationKey: workspaceApplicationSourceApplicationInfoApplicationKey,
copyType: workspaceApplicationSourceApplicationInfoCopyType,
workspaceId: testWorkspace.id,
},
state: workspaceApplicationState,
});
import pulumi
import pulumi_oci as oci
test_workspace_application = oci.data_integration.WorkspaceApplication("test_workspace_application",
identifier=workspace_application_identifier,
name=workspace_application_name,
workspace_id=test_workspace["id"],
model_type=workspace_application_model_type,
defined_tags={
"foo-namespace.bar-key": "value",
},
description=workspace_application_description,
display_name=workspace_application_display_name,
freeform_tags={
"bar-key": "value",
},
key=workspace_application_key,
model_version=workspace_application_model_version,
object_status=workspace_application_object_status,
registry_metadata=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.
Constructor example
The following reference example uses placeholder values for all input properties.
var workspaceApplicationResource = new Oci.DataIntegration.WorkspaceApplication("workspaceApplicationResource", new()
{
Identifier = "string",
WorkspaceId = "string",
ModelType = "string",
FreeformTags =
{
{ "string", "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.
- Model
Type string - (Updatable) The type of the application.
- Workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- 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.
- Display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- Model
Version 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.
- 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 WorkspaceApplication Registry Metadata - Information about the object and its parent.
- Source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- State string
- (Updatable) The current state of the workspace.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Model
Type string - (Updatable) The type of the application.
- Workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- 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.
- Display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- Model
Version 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.
- 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 WorkspaceApplication Registry Metadata Args - Information about the object and its parent.
- Source
Application WorkspaceInfo Application Source Application Info Args - The information about the application.
- State string
- (Updatable) The current state of the workspace.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- model
Type String - (Updatable) The type of the application.
- workspace
Id String The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- 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.
- display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata WorkspaceApplication Registry Metadata - Information about the object and its parent.
- source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- state String
- (Updatable) The current state of the workspace.
- identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- model
Type string - (Updatable) The type of the application.
- workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[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.
- display
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.
- {[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
- (Updatable) Currently not used on application creation. Reserved for future.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata WorkspaceApplication Registry Metadata - Information about the object and its parent.
- source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- state string
- (Updatable) The current state of the workspace.
- identifier str
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- model_
type str - (Updatable) The type of the application.
- workspace_
id str The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, 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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- model_
version str - (Updatable) The object's model version.
- name str
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object_
status int - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry_
metadata dataintegration.Workspace Application Registry Metadata Args - Information about the object and its parent.
- source_
application_ dataintegration.info Workspace Application Source Application Info Args - The information about the application.
- state str
- (Updatable) The current state of the workspace.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- model
Type String - (Updatable) The type of the application.
- workspace
Id String The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- 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.
- display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata Property Map - Information about the object and its parent.
- source
Application Property MapInfo - The information about the application.
- state String
- (Updatable) The current state of the workspace.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceApplication resource produces the following output properties:
- Application
Version int - The source application version of the application.
- Compartment
Id string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Dependent
Object List<WorkspaceMetadatas Application Dependent Object Metadata> - A list of dependent objects in this patch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Map 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<Workspace
Application Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Object
Version int - The object version.
- Parent
Reves List<WorkspaceApplication Parent Ref> - A reference to the object's parent.
- Published
Object List<WorkspaceMetadatas Application Published Object Metadata> - A list of objects that are published or unpublished in this patch.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- Time
Updated 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 string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Dependent
Object []WorkspaceMetadatas Application Dependent Object Metadata - A list of dependent objects in this patch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Map 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
[]Workspace
Application Metadata - A summary type containing information about the object including its key, name and when/who created/updated it.
- Object
Version int - The object version.
- Parent
Reves []WorkspaceApplication Parent Ref - A reference to the object's parent.
- Published
Object []WorkspaceMetadatas Application Published Object Metadata - A list of objects that are published or unpublished in this patch.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- Time
Updated 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 Integer - The source application version of the application.
- compartment
Id String - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- dependent
Object List<WorkspaceMetadatas Application Dependent Object Metadata> - A list of dependent objects in this patch.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map 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<Workspace
Application Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- object
Version Integer - The object version.
- parent
Reves List<WorkspaceApplication Parent Ref> - A reference to the object's parent.
- published
Object List<WorkspaceMetadatas Application Published Object Metadata> - A list of objects that are published or unpublished in this patch.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched String - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated 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 number - The source application version of the application.
- compartment
Id string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- dependent
Object WorkspaceMetadatas Application Dependent Object Metadata[] - A list of dependent objects in this patch.
- id string
- The provider-assigned unique ID for this managed resource.
- key
Map {[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
Workspace
Application Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- object
Version number - The object version.
- parent
Reves WorkspaceApplication Parent Ref[] - A reference to the object's parent.
- published
Object WorkspaceMetadatas Application Published Object Metadata[] - A list of objects that are published or unpublished in this patch.
- time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- application_
version int - The source application version of the application.
- compartment_
id str - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- dependent_
object_ Sequence[dataintegration.metadatas Workspace Application Dependent Object Metadata] - A list of dependent objects in this patch.
- id str
- The provider-assigned unique ID for this managed resource.
- key_
map Mapping[str, 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.
Workspace Application Metadata] - A summary type containing information about the object including its key, name and when/who created/updated it.
- object_
version int - The object version.
- parent_
reves Sequence[dataintegration.Workspace Application Parent Ref] - A reference to the object's parent.
- published_
object_ Sequence[dataintegration.metadatas Workspace Application Published Object Metadata] - A list of objects that are published or unpublished in this patch.
- time_
created str - The date and time the application was created, in the timestamp format defined by RFC3339.
- time_
patched str - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- application
Version Number - The source application version of the application.
- compartment
Id String - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- dependent
Object List<Property Map>Metadatas - A list of dependent objects in this patch.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map 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.
- object
Version Number - The object version.
- parent
Reves List<Property Map> - A reference to the object's parent.
- published
Object List<Property Map>Metadatas - A list of objects that are published or unpublished in this patch.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched String - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated 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.
- Application
Version int - The source application version of the application.
- Compartment
Id string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- 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"}
- Dependent
Object List<WorkspaceMetadatas Application Dependent Object Metadata> - A list of dependent objects in this patch.
- Description string
- (Updatable) Detailed description for the object.
- Display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- Key
Map 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<Workspace
Application Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - (Updatable) The type of the application.
- Model
Version 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.
- 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 List<WorkspaceApplication Parent Ref> - A reference to the object's parent.
- Published
Object List<WorkspaceMetadatas Application Published Object Metadata> - A list of objects that are published or unpublished in this patch.
- Registry
Metadata WorkspaceApplication Registry Metadata - Information about the object and its parent.
- Source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- State string
- (Updatable) The current state of the workspace.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- Workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Application
Version int - The source application version of the application.
- Compartment
Id string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- 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"}
- Dependent
Object []WorkspaceMetadatas Application Dependent Object Metadata Args - A list of dependent objects in this patch.
- Description string
- (Updatable) Detailed description for the object.
- Display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- Key
Map 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
[]Workspace
Application Metadata Args - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - (Updatable) The type of the application.
- Model
Version 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.
- 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 []WorkspaceApplication Parent Ref Args - A reference to the object's parent.
- Published
Object []WorkspaceMetadatas Application Published Object Metadata Args - A list of objects that are published or unpublished in this patch.
- Registry
Metadata WorkspaceApplication Registry Metadata Args - Information about the object and its parent.
- Source
Application WorkspaceInfo Application Source Application Info Args - The information about the application.
- State string
- (Updatable) The current state of the workspace.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- Workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- application
Version Integer - The source application version of the application.
- compartment
Id String - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- 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"}
- dependent
Object List<WorkspaceMetadatas Application Dependent Object Metadata> - A list of dependent objects in this patch.
- description String
- (Updatable) Detailed description for the object.
- display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- key
Map 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<Workspace
Application Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - (Updatable) The type of the application.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - The object version.
- parent
Reves List<WorkspaceApplication Parent Ref> - A reference to the object's parent.
- published
Object List<WorkspaceMetadatas Application Published Object Metadata> - A list of objects that are published or unpublished in this patch.
- registry
Metadata WorkspaceApplication Registry Metadata - Information about the object and its parent.
- source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- state String
- (Updatable) The current state of the workspace.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched String - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspace
Id String The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- application
Version number - The source application version of the application.
- compartment
Id string - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- {[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"}
- dependent
Object WorkspaceMetadatas Application Dependent Object Metadata[] - A list of dependent objects in this patch.
- description string
- (Updatable) Detailed description for the object.
- display
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.
- {[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
- (Updatable) Currently not used on application creation. Reserved for future.
- key
Map {[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
Workspace
Application Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - (Updatable) The type of the application.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - The object version.
- parent
Reves WorkspaceApplication Parent Ref[] - A reference to the object's parent.
- published
Object WorkspaceMetadatas Application Published Object Metadata[] - A list of objects that are published or unpublished in this patch.
- registry
Metadata WorkspaceApplication Registry Metadata - Information about the object and its parent.
- source
Application WorkspaceInfo Application Source Application Info - The information about the application.
- state string
- (Updatable) The current state of the workspace.
- time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched string - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspace
Id string The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- application_
version int - The source application version of the application.
- compartment_
id str - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Mapping[str, 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_ Sequence[dataintegration.metadatas Workspace Application Dependent Object Metadata Args] - A list of dependent objects in this patch.
- description str
- (Updatable) Detailed description for the object.
- display_
name str - (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Mapping[str, 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
- (Updatable) Currently not used on application creation. Reserved for future.
- 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.
Workspace Application Metadata Args] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model_
type str - (Updatable) The type of the application.
- model_
version str - (Updatable) The object's model version.
- name str
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object_
status int - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object_
version int - The object version.
- parent_
reves Sequence[dataintegration.Workspace Application Parent Ref Args] - A reference to the object's parent.
- published_
object_ Sequence[dataintegration.metadatas Workspace Application Published Object Metadata Args] - A list of objects that are published or unpublished in this patch.
- registry_
metadata dataintegration.Workspace Application Registry Metadata Args - Information about the object and its parent.
- source_
application_ dataintegration.info Workspace Application Source Application Info Args - The information about the application.
- state str
- (Updatable) The current state of the workspace.
- time_
created str - The date and time the application was created, in the timestamp format defined by RFC3339.
- time_
patched str - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspace_
id str The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- application
Version Number - The source application version of the application.
- compartment
Id String - OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Map<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 List<Property Map>Metadatas - A list of dependent objects in this patch.
- description String
- (Updatable) Detailed description for the object.
- display
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.
- 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
- (Updatable) Currently not used on application creation. Reserved for future.
- key
Map 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.
- model
Type String - (Updatable) The type of the application.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - The object version.
- parent
Reves List<Property Map> - A reference to the object's parent.
- published
Object List<Property Map>Metadatas - A list of objects that are published or unpublished in this patch.
- registry
Metadata Property Map - Information about the object and its parent.
- source
Application Property MapInfo - The information about the application.
- state String
- (Updatable) The current state of the workspace.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Patched String - The date and time the application was patched, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspace
Id String The workspace ID.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
WorkspaceApplicationDependentObjectMetadata, WorkspaceApplicationDependentObjectMetadataArgs
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Integer - The object version.
- type String
- The type of the object in patch.
- action string
- The patch action indicating if object was created, updated, or deleted.
- identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- (Updatable) Currently not used on application creation. Reserved for future.
- name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path string - The fully qualified path of the published object, which would include its project and folder.
- object
Version number - The object version.
- type string
- The type of the object in patch.
- action str
- The patch action indicating if object was created, updated, or deleted.
- identifier str
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- (Updatable) Currently not used on application creation. Reserved for future.
- name str
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name_
path str - The fully qualified path of the published object, which would include its project and folder.
- object_
version int - The object version.
- type str
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Number - The object version.
- type String
- The type of the object in patch.
WorkspaceApplicationMetadata, WorkspaceApplicationMetadataArgs
- Aggregator
Key string - The owning object key for this object.
- Aggregators
List<Workspace
Application Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<WorkspaceApplication Metadata Count Statistic> - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields Dictionary<string, object> - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- Aggregator
Key string - The owning object key for this object.
- Aggregators
[]Workspace
Application Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []WorkspaceApplication Metadata Count Statistic - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields map[string]interface{} - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators
List<Workspace
Application Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<WorkspaceApplication Metadata Count Statistic> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String,Object> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Integer - The registry version of the object.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
- aggregator
Key string - The owning object key for this object.
- aggregators
Workspace
Application Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics WorkspaceApplication Metadata Count Statistic[] - A count statistics.
- created
By string - The user that created the object.
- created
By stringName - The user that created the object.
- identifier
Path string - The full path to identify this object.
- info
Fields {[key: string]: any} - Information property fields.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version number - The registry version of the object.
- time
Created string - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updated
By string - The user that updated the object.
- updated
By stringName - The user that updated the object.
- aggregator_
key str - The owning object key for this object.
- aggregators
Sequence[dataintegration.
Workspace Application Metadata Aggregator] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count_
statistics Sequence[dataintegration.Workspace Application Metadata Count Statistic] - A count statistics.
- created_
by str - The user that created the object.
- created_
by_ strname - The user that created the object.
- identifier_
path str - The full path to identify this object.
- info_
fields Mapping[str, Any] - Information property fields.
- is_
favorite bool - Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_
version int - The registry version of the object.
- time_
created str - The date and time the application was created, in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updated_
by str - The user that updated the object.
- updated_
by_ strname - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators List<Property Map>
- A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<Property Map> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<Any> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Number - The registry version of the object.
- time
Created String - The date and time the application was created, in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
WorkspaceApplicationMetadataAggregator, WorkspaceApplicationMetadataAggregatorArgs
- Description string
- (Updatable) Detailed description for the object.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Type string
- The type of the object in patch.
- Description string
- (Updatable) Detailed description for the object.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Type string
- The type of the object in patch.
- description String
- (Updatable) Detailed description for the object.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type String
- The type of the object in patch.
- description string
- (Updatable) Detailed description for the object.
- identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- (Updatable) Currently not used on application creation. Reserved for future.
- name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type string
- The type of the object in patch.
- description str
- (Updatable) Detailed description for the object.
- identifier str
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- (Updatable) Currently not used on application creation. Reserved for future.
- name str
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type str
- The type of the object in patch.
- description String
- (Updatable) Detailed description for the object.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type String
- The type of the object in patch.
WorkspaceApplicationMetadataCountStatistic, WorkspaceApplicationMetadataCountStatisticArgs
- Object
Type List<WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List> - The array of statistics.
- Object
Type []WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List - The array of statistics.
- object
Type List<WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List> - The array of statistics.
- object
Type WorkspaceCount Lists Application Metadata Count Statistic Object Type Count List[] - The array of statistics.
- object
Type List<Property Map>Count Lists - The array of statistics.
WorkspaceApplicationMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationMetadataCountStatisticObjectTypeCountListArgs
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
- object
Count string - The value for the count statistic object.
- object
Type string - The type of object for the count statistic object.
- object_
count str - The value for the count statistic object.
- object_
type str - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
WorkspaceApplicationParentRef, WorkspaceApplicationParentRefArgs
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
WorkspaceApplicationPublishedObjectMetadata, WorkspaceApplicationPublishedObjectMetadataArgs
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- (Updatable) Currently not used on application creation. Reserved for future.
- Name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Integer - The object version.
- type String
- The type of the object in patch.
- action string
- The patch action indicating if object was created, updated, or deleted.
- identifier string
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- (Updatable) Currently not used on application creation. Reserved for future.
- name string
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path string - The fully qualified path of the published object, which would include its project and folder.
- object
Version number - The object version.
- type string
- The type of the object in patch.
- action str
- The patch action indicating if object was created, updated, or deleted.
- identifier str
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- (Updatable) Currently not used on application creation. Reserved for future.
- name str
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name_
path str - The fully qualified path of the published object, which would include its project and folder.
- object_
version int - The object version.
- type str
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- (Updatable) Currently not used on application creation. Reserved for future.
- name String
- (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Number - The object version.
- type String
- The type of the object in patch.
WorkspaceApplicationRegistryMetadata, WorkspaceApplicationRegistryMetadataArgs
- Aggregator
Key string - The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - The registry version.
- Aggregator
Key string - The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - The registry version.
- aggregator
Key String - The owning object's key for this object.
- is
Favorite 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.
- registry
Version Integer - The registry version.
- aggregator
Key string - The owning object's key for this object.
- is
Favorite 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.
- registry
Version 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.
- aggregator
Key String - The owning object's key for this object.
- is
Favorite 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.
- registry
Version Number - The registry version.
WorkspaceApplicationSourceApplicationInfo, WorkspaceApplicationSourceApplicationInfoArgs
- Application
Key string - The source application key to use when creating the application.
- Application
Version string - The source application version of the application.
- Copy
Type 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.
- Last
Patch stringKey - The last patch key for the application.
- Workspace
Id string - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- Application
Key string - The source application key to use when creating the application.
- Application
Version string - The source application version of the application.
- Copy
Type 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.
- Last
Patch stringKey - The last patch key for the application.
- Workspace
Id string - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- application
Key String - The source application key to use when creating the application.
- application
Version String - The source application version of the application.
- copy
Type 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.
- last
Patch StringKey - The last patch key for the application.
- workspace
Id String - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- application
Key string - The source application key to use when creating the application.
- application
Version string - The source application version of the application.
- copy
Type 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.
- last
Patch stringKey - The last patch key for the application.
- workspace
Id string - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- application_
key str - The source application key to use when creating the application.
- application_
version str - The source application version of the application.
- copy_
type str - Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
- last_
patch_ strkey - The last patch key for the application.
- workspace_
id str - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- application
Key String - The source application key to use when creating the application.
- application
Version String - The source application version of the application.
- copy
Type 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.
- last
Patch StringKey - The last patch key for the application.
- workspace
Id String - The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
Import
WorkspaceApplications can be imported using the id
, e.g.
$ pulumi import oci:DataIntegration/workspaceApplication:WorkspaceApplication test_workspace_application "workspaces/{workspaceId}/applications/{applicationKey}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.