oci.DataIntegration.WorkspaceApplicationPatch
Explore with Pulumi AI
This resource provides the Workspace Application Patch resource in Oracle Cloud Infrastructure Data Integration service.
Creates a patch in an application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceApplicationPatch = new oci.dataintegration.WorkspaceApplicationPatch("test_workspace_application_patch", {
    applicationKey: workspaceApplicationPatchApplicationKey,
    identifier: workspaceApplicationPatchIdentifier,
    name: workspaceApplicationPatchName,
    objectKeys: workspaceApplicationPatchObjectKeys,
    patchType: workspaceApplicationPatchPatchType,
    workspaceId: testWorkspace.id,
    description: workspaceApplicationPatchDescription,
    key: workspaceApplicationPatchKey,
    modelVersion: workspaceApplicationPatchModelVersion,
    objectStatus: workspaceApplicationPatchObjectStatus,
    registryMetadata: {
        aggregatorKey: workspaceApplicationPatchRegistryMetadataAggregatorKey,
        isFavorite: workspaceApplicationPatchRegistryMetadataIsFavorite,
        key: workspaceApplicationPatchRegistryMetadataKey,
        labels: workspaceApplicationPatchRegistryMetadataLabels,
        registryVersion: workspaceApplicationPatchRegistryMetadataRegistryVersion,
    },
});
import pulumi
import pulumi_oci as oci
test_workspace_application_patch = oci.data_integration.WorkspaceApplicationPatch("test_workspace_application_patch",
    application_key=workspace_application_patch_application_key,
    identifier=workspace_application_patch_identifier,
    name=workspace_application_patch_name,
    object_keys=workspace_application_patch_object_keys,
    patch_type=workspace_application_patch_patch_type,
    workspace_id=test_workspace["id"],
    description=workspace_application_patch_description,
    key=workspace_application_patch_key,
    model_version=workspace_application_patch_model_version,
    object_status=workspace_application_patch_object_status,
    registry_metadata={
        "aggregator_key": workspace_application_patch_registry_metadata_aggregator_key,
        "is_favorite": workspace_application_patch_registry_metadata_is_favorite,
        "key": workspace_application_patch_registry_metadata_key,
        "labels": workspace_application_patch_registry_metadata_labels,
        "registry_version": workspace_application_patch_registry_metadata_registry_version,
    })
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataintegration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataintegration.NewWorkspaceApplicationPatch(ctx, "test_workspace_application_patch", &dataintegration.WorkspaceApplicationPatchArgs{
			ApplicationKey: pulumi.Any(workspaceApplicationPatchApplicationKey),
			Identifier:     pulumi.Any(workspaceApplicationPatchIdentifier),
			Name:           pulumi.Any(workspaceApplicationPatchName),
			ObjectKeys:     pulumi.Any(workspaceApplicationPatchObjectKeys),
			PatchType:      pulumi.Any(workspaceApplicationPatchPatchType),
			WorkspaceId:    pulumi.Any(testWorkspace.Id),
			Description:    pulumi.Any(workspaceApplicationPatchDescription),
			Key:            pulumi.Any(workspaceApplicationPatchKey),
			ModelVersion:   pulumi.Any(workspaceApplicationPatchModelVersion),
			ObjectStatus:   pulumi.Any(workspaceApplicationPatchObjectStatus),
			RegistryMetadata: &dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs{
				AggregatorKey:   pulumi.Any(workspaceApplicationPatchRegistryMetadataAggregatorKey),
				IsFavorite:      pulumi.Any(workspaceApplicationPatchRegistryMetadataIsFavorite),
				Key:             pulumi.Any(workspaceApplicationPatchRegistryMetadataKey),
				Labels:          pulumi.Any(workspaceApplicationPatchRegistryMetadataLabels),
				RegistryVersion: pulumi.Any(workspaceApplicationPatchRegistryMetadataRegistryVersion),
			},
		})
		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 testWorkspaceApplicationPatch = new Oci.DataIntegration.WorkspaceApplicationPatch("test_workspace_application_patch", new()
    {
        ApplicationKey = workspaceApplicationPatchApplicationKey,
        Identifier = workspaceApplicationPatchIdentifier,
        Name = workspaceApplicationPatchName,
        ObjectKeys = workspaceApplicationPatchObjectKeys,
        PatchType = workspaceApplicationPatchPatchType,
        WorkspaceId = testWorkspace.Id,
        Description = workspaceApplicationPatchDescription,
        Key = workspaceApplicationPatchKey,
        ModelVersion = workspaceApplicationPatchModelVersion,
        ObjectStatus = workspaceApplicationPatchObjectStatus,
        RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationPatchRegistryMetadataArgs
        {
            AggregatorKey = workspaceApplicationPatchRegistryMetadataAggregatorKey,
            IsFavorite = workspaceApplicationPatchRegistryMetadataIsFavorite,
            Key = workspaceApplicationPatchRegistryMetadataKey,
            Labels = workspaceApplicationPatchRegistryMetadataLabels,
            RegistryVersion = workspaceApplicationPatchRegistryMetadataRegistryVersion,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.WorkspaceApplicationPatch;
import com.pulumi.oci.DataIntegration.WorkspaceApplicationPatchArgs;
import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationPatchRegistryMetadataArgs;
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 testWorkspaceApplicationPatch = new WorkspaceApplicationPatch("testWorkspaceApplicationPatch", WorkspaceApplicationPatchArgs.builder()
            .applicationKey(workspaceApplicationPatchApplicationKey)
            .identifier(workspaceApplicationPatchIdentifier)
            .name(workspaceApplicationPatchName)
            .objectKeys(workspaceApplicationPatchObjectKeys)
            .patchType(workspaceApplicationPatchPatchType)
            .workspaceId(testWorkspace.id())
            .description(workspaceApplicationPatchDescription)
            .key(workspaceApplicationPatchKey)
            .modelVersion(workspaceApplicationPatchModelVersion)
            .objectStatus(workspaceApplicationPatchObjectStatus)
            .registryMetadata(WorkspaceApplicationPatchRegistryMetadataArgs.builder()
                .aggregatorKey(workspaceApplicationPatchRegistryMetadataAggregatorKey)
                .isFavorite(workspaceApplicationPatchRegistryMetadataIsFavorite)
                .key(workspaceApplicationPatchRegistryMetadataKey)
                .labels(workspaceApplicationPatchRegistryMetadataLabels)
                .registryVersion(workspaceApplicationPatchRegistryMetadataRegistryVersion)
                .build())
            .build());
    }
}
resources:
  testWorkspaceApplicationPatch:
    type: oci:DataIntegration:WorkspaceApplicationPatch
    name: test_workspace_application_patch
    properties:
      applicationKey: ${workspaceApplicationPatchApplicationKey}
      identifier: ${workspaceApplicationPatchIdentifier}
      name: ${workspaceApplicationPatchName}
      objectKeys: ${workspaceApplicationPatchObjectKeys}
      patchType: ${workspaceApplicationPatchPatchType}
      workspaceId: ${testWorkspace.id}
      description: ${workspaceApplicationPatchDescription}
      key: ${workspaceApplicationPatchKey}
      modelVersion: ${workspaceApplicationPatchModelVersion}
      objectStatus: ${workspaceApplicationPatchObjectStatus}
      registryMetadata:
        aggregatorKey: ${workspaceApplicationPatchRegistryMetadataAggregatorKey}
        isFavorite: ${workspaceApplicationPatchRegistryMetadataIsFavorite}
        key: ${workspaceApplicationPatchRegistryMetadataKey}
        labels: ${workspaceApplicationPatchRegistryMetadataLabels}
        registryVersion: ${workspaceApplicationPatchRegistryMetadataRegistryVersion}
Create WorkspaceApplicationPatch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceApplicationPatch(name: string, args: WorkspaceApplicationPatchArgs, opts?: CustomResourceOptions);@overload
def WorkspaceApplicationPatch(resource_name: str,
                              args: WorkspaceApplicationPatchArgs,
                              opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceApplicationPatch(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              application_key: Optional[str] = None,
                              patch_type: Optional[str] = None,
                              workspace_id: Optional[str] = None,
                              description: Optional[str] = None,
                              identifier: Optional[str] = None,
                              key: Optional[str] = None,
                              model_version: Optional[str] = None,
                              name: Optional[str] = None,
                              object_keys: Optional[Sequence[str]] = None,
                              object_status: Optional[int] = None,
                              registry_metadata: Optional[WorkspaceApplicationPatchRegistryMetadataArgs] = None)func NewWorkspaceApplicationPatch(ctx *Context, name string, args WorkspaceApplicationPatchArgs, opts ...ResourceOption) (*WorkspaceApplicationPatch, error)public WorkspaceApplicationPatch(string name, WorkspaceApplicationPatchArgs args, CustomResourceOptions? opts = null)
public WorkspaceApplicationPatch(String name, WorkspaceApplicationPatchArgs args)
public WorkspaceApplicationPatch(String name, WorkspaceApplicationPatchArgs args, CustomResourceOptions options)
type: oci:DataIntegration:WorkspaceApplicationPatch
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 WorkspaceApplicationPatchArgs
- 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 WorkspaceApplicationPatchArgs
- 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 WorkspaceApplicationPatchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceApplicationPatchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceApplicationPatchArgs
- 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 workspaceApplicationPatchResource = new Oci.DataIntegration.WorkspaceApplicationPatch("workspaceApplicationPatchResource", new()
{
    ApplicationKey = "string",
    PatchType = "string",
    WorkspaceId = "string",
    Description = "string",
    Identifier = "string",
    Key = "string",
    ModelVersion = "string",
    Name = "string",
    ObjectKeys = new[]
    {
        "string",
    },
    ObjectStatus = 0,
    RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationPatchRegistryMetadataArgs
    {
        AggregatorKey = "string",
        IsFavorite = false,
        Key = "string",
        Labels = new[]
        {
            "string",
        },
        RegistryVersion = 0,
    },
});
example, err := dataintegration.NewWorkspaceApplicationPatch(ctx, "workspaceApplicationPatchResource", &dataintegration.WorkspaceApplicationPatchArgs{
	ApplicationKey: pulumi.String("string"),
	PatchType:      pulumi.String("string"),
	WorkspaceId:    pulumi.String("string"),
	Description:    pulumi.String("string"),
	Identifier:     pulumi.String("string"),
	Key:            pulumi.String("string"),
	ModelVersion:   pulumi.String("string"),
	Name:           pulumi.String("string"),
	ObjectKeys: pulumi.StringArray{
		pulumi.String("string"),
	},
	ObjectStatus: pulumi.Int(0),
	RegistryMetadata: &dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs{
		AggregatorKey: pulumi.String("string"),
		IsFavorite:    pulumi.Bool(false),
		Key:           pulumi.String("string"),
		Labels: pulumi.StringArray{
			pulumi.String("string"),
		},
		RegistryVersion: pulumi.Int(0),
	},
})
var workspaceApplicationPatchResource = new WorkspaceApplicationPatch("workspaceApplicationPatchResource", WorkspaceApplicationPatchArgs.builder()
    .applicationKey("string")
    .patchType("string")
    .workspaceId("string")
    .description("string")
    .identifier("string")
    .key("string")
    .modelVersion("string")
    .name("string")
    .objectKeys("string")
    .objectStatus(0)
    .registryMetadata(WorkspaceApplicationPatchRegistryMetadataArgs.builder()
        .aggregatorKey("string")
        .isFavorite(false)
        .key("string")
        .labels("string")
        .registryVersion(0)
        .build())
    .build());
workspace_application_patch_resource = oci.data_integration.WorkspaceApplicationPatch("workspaceApplicationPatchResource",
    application_key="string",
    patch_type="string",
    workspace_id="string",
    description="string",
    identifier="string",
    key="string",
    model_version="string",
    name="string",
    object_keys=["string"],
    object_status=0,
    registry_metadata={
        "aggregator_key": "string",
        "is_favorite": False,
        "key": "string",
        "labels": ["string"],
        "registry_version": 0,
    })
const workspaceApplicationPatchResource = new oci.dataintegration.WorkspaceApplicationPatch("workspaceApplicationPatchResource", {
    applicationKey: "string",
    patchType: "string",
    workspaceId: "string",
    description: "string",
    identifier: "string",
    key: "string",
    modelVersion: "string",
    name: "string",
    objectKeys: ["string"],
    objectStatus: 0,
    registryMetadata: {
        aggregatorKey: "string",
        isFavorite: false,
        key: "string",
        labels: ["string"],
        registryVersion: 0,
    },
});
type: oci:DataIntegration:WorkspaceApplicationPatch
properties:
    applicationKey: string
    description: string
    identifier: string
    key: string
    modelVersion: string
    name: string
    objectKeys:
        - string
    objectStatus: 0
    patchType: string
    registryMetadata:
        aggregatorKey: string
        isFavorite: false
        key: string
        labels:
            - string
        registryVersion: 0
    workspaceId: string
WorkspaceApplicationPatch Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkspaceApplicationPatch resource accepts the following input properties:
- ApplicationKey string
- The application key.
- PatchType string
- The type of the patch applied or being applied on 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 
- Description string
- Detailed description for the object.
- Identifier string
- 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 object's key.
- ModelVersion string
- The object's model version.
- Name string
- 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.
- ObjectKeys List<string>
- The array of object keys to publish into application.
- ObjectStatus int
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- RegistryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- ApplicationKey string
- The application key.
- PatchType string
- The type of the patch applied or being applied on 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 
- Description string
- Detailed description for the object.
- Identifier string
- 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 object's key.
- ModelVersion string
- The object's model version.
- Name string
- 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.
- ObjectKeys []string
- The array of object keys to publish into application.
- ObjectStatus int
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- RegistryMetadata WorkspaceApplication Patch Registry Metadata Args 
- Information about the object and its parent.
- applicationKey String
- The application key.
- patchType String
- The type of the patch applied or being applied on 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 
- description String
- Detailed description for the object.
- identifier String
- 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 object's key.
- modelVersion String
- The object's model version.
- name String
- 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.
- objectKeys List<String>
- The array of object keys to publish into application.
- objectStatus Integer
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- applicationKey string
- The application key.
- patchType string
- The type of the patch applied or being applied on 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 
- description string
- Detailed description for the object.
- identifier string
- 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 object's key.
- modelVersion string
- The object's model version.
- name string
- 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.
- objectKeys string[]
- The array of object keys to publish into application.
- objectStatus number
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- application_key str
- The application key.
- patch_type str
- The type of the patch applied or being applied on 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 
- description str
- Detailed description for the object.
- identifier str
- 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 object's key.
- model_version str
- The object's model version.
- name str
- 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_keys Sequence[str]
- The array of object keys to publish into application.
- object_status int
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry_metadata WorkspaceApplication Patch Registry Metadata Args 
- Information about the object and its parent.
- applicationKey String
- The application key.
- patchType String
- The type of the patch applied or being applied on 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 
- description String
- Detailed description for the object.
- identifier String
- 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 object's key.
- modelVersion String
- The object's model version.
- name String
- 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.
- objectKeys List<String>
- The array of object keys to publish into application.
- objectStatus Number
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceApplicationPatch resource produces the following output properties:
- ApplicationVersion int
- The application version of the patch.
- DependentObject List<WorkspaceMetadatas Application Patch Dependent Object Metadata> 
- List of dependent objects in this patch.
- ErrorMessages Dictionary<string, string>
- The errors encountered while applying the patch, if any.
- Id string
- The provider-assigned unique ID for this managed resource.
- KeyMap Dictionary<string, string>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
List<WorkspaceApplication Patch Metadata> 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- ModelType string
- The object type.
- ObjectVersion int
- The object version.
- ParentReves List<WorkspaceApplication Patch Parent Ref> 
- A reference to the object's parent.
- PatchObject List<WorkspaceMetadatas Application Patch Patch Object Metadata> 
- List of objects that are published or unpublished in this patch.
- PatchStatus string
- Status of the patch applied or being applied on the application
- TimePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- ApplicationVersion int
- The application version of the patch.
- DependentObject []WorkspaceMetadatas Application Patch Dependent Object Metadata 
- List of dependent objects in this patch.
- ErrorMessages map[string]string
- The errors encountered while applying the patch, if any.
- Id string
- The provider-assigned unique ID for this managed resource.
- KeyMap map[string]string
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
[]WorkspaceApplication Patch Metadata 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- ModelType string
- The object type.
- ObjectVersion int
- The object version.
- ParentReves []WorkspaceApplication Patch Parent Ref 
- A reference to the object's parent.
- PatchObject []WorkspaceMetadatas Application Patch Patch Object Metadata 
- List of objects that are published or unpublished in this patch.
- PatchStatus string
- Status of the patch applied or being applied on the application
- TimePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- applicationVersion Integer
- The application version of the patch.
- dependentObject List<WorkspaceMetadatas Application Patch Dependent Object Metadata> 
- List of dependent objects in this patch.
- errorMessages Map<String,String>
- The errors encountered while applying the patch, if any.
- id String
- The provider-assigned unique ID for this managed resource.
- keyMap Map<String,String>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
List<WorkspaceApplication Patch Metadata> 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType String
- The object type.
- objectVersion Integer
- The object version.
- parentReves List<WorkspaceApplication Patch Parent Ref> 
- A reference to the object's parent.
- patchObject List<WorkspaceMetadatas Application Patch Patch Object Metadata> 
- List of objects that are published or unpublished in this patch.
- patchStatus String
- Status of the patch applied or being applied on the application
- timePatched String
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- applicationVersion number
- The application version of the patch.
- dependentObject WorkspaceMetadatas Application Patch Dependent Object Metadata[] 
- List of dependent objects in this patch.
- errorMessages {[key: string]: string}
- The errors encountered while applying the patch, if any.
- id string
- The provider-assigned unique ID for this managed resource.
- keyMap {[key: string]: string}
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
WorkspaceApplication Patch Metadata[] 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType string
- The object type.
- objectVersion number
- The object version.
- parentReves WorkspaceApplication Patch Parent Ref[] 
- A reference to the object's parent.
- patchObject WorkspaceMetadatas Application Patch Patch Object Metadata[] 
- List of objects that are published or unpublished in this patch.
- patchStatus string
- Status of the patch applied or being applied on the application
- timePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- application_version int
- The application version of the patch.
- dependent_object_ Sequence[Workspacemetadatas Application Patch Dependent Object Metadata] 
- List of dependent objects in this patch.
- error_messages Mapping[str, str]
- The errors encountered while applying the patch, if any.
- id str
- The provider-assigned unique ID for this managed resource.
- key_map Mapping[str, str]
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Sequence[WorkspaceApplication Patch Metadata] 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- model_type str
- The object type.
- object_version int
- The object version.
- parent_reves Sequence[WorkspaceApplication Patch Parent Ref] 
- A reference to the object's parent.
- patch_object_ Sequence[Workspacemetadatas Application Patch Patch Object Metadata] 
- List of objects that are published or unpublished in this patch.
- patch_status str
- Status of the patch applied or being applied on the application
- time_patched str
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- applicationVersion Number
- The application version of the patch.
- dependentObject List<Property Map>Metadatas 
- List of dependent objects in this patch.
- errorMessages Map<String>
- The errors encountered while applying the patch, if any.
- id String
- The provider-assigned unique ID for this managed resource.
- keyMap Map<String>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas List<Property Map>
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType String
- The object type.
- objectVersion Number
- The object version.
- parentReves List<Property Map>
- A reference to the object's parent.
- patchObject List<Property Map>Metadatas 
- List of objects that are published or unpublished in this patch.
- patchStatus String
- Status of the patch applied or being applied on the application
- timePatched String
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
Look up Existing WorkspaceApplicationPatch Resource
Get an existing WorkspaceApplicationPatch 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?: WorkspaceApplicationPatchState, opts?: CustomResourceOptions): WorkspaceApplicationPatch@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_key: Optional[str] = None,
        application_version: Optional[int] = None,
        dependent_object_metadatas: Optional[Sequence[WorkspaceApplicationPatchDependentObjectMetadataArgs]] = None,
        description: Optional[str] = None,
        error_messages: Optional[Mapping[str, str]] = None,
        identifier: Optional[str] = None,
        key: Optional[str] = None,
        key_map: Optional[Mapping[str, str]] = None,
        metadatas: Optional[Sequence[WorkspaceApplicationPatchMetadataArgs]] = None,
        model_type: Optional[str] = None,
        model_version: Optional[str] = None,
        name: Optional[str] = None,
        object_keys: Optional[Sequence[str]] = None,
        object_status: Optional[int] = None,
        object_version: Optional[int] = None,
        parent_reves: Optional[Sequence[WorkspaceApplicationPatchParentRefArgs]] = None,
        patch_object_metadatas: Optional[Sequence[WorkspaceApplicationPatchPatchObjectMetadataArgs]] = None,
        patch_status: Optional[str] = None,
        patch_type: Optional[str] = None,
        registry_metadata: Optional[WorkspaceApplicationPatchRegistryMetadataArgs] = None,
        time_patched: Optional[str] = None,
        workspace_id: Optional[str] = None) -> WorkspaceApplicationPatchfunc GetWorkspaceApplicationPatch(ctx *Context, name string, id IDInput, state *WorkspaceApplicationPatchState, opts ...ResourceOption) (*WorkspaceApplicationPatch, error)public static WorkspaceApplicationPatch Get(string name, Input<string> id, WorkspaceApplicationPatchState? state, CustomResourceOptions? opts = null)public static WorkspaceApplicationPatch get(String name, Output<String> id, WorkspaceApplicationPatchState state, CustomResourceOptions options)resources:  _:    type: oci:DataIntegration:WorkspaceApplicationPatch    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- ApplicationKey string
- The application key.
- ApplicationVersion int
- The application version of the patch.
- DependentObject List<WorkspaceMetadatas Application Patch Dependent Object Metadata> 
- List of dependent objects in this patch.
- Description string
- Detailed description for the object.
- ErrorMessages Dictionary<string, string>
- The errors encountered while applying the patch, if any.
- Identifier string
- 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 object's key.
- KeyMap Dictionary<string, string>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
List<WorkspaceApplication Patch Metadata> 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- ModelType string
- The object type.
- ModelVersion string
- The object's model version.
- Name string
- 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.
- ObjectKeys List<string>
- The array of object keys to publish into application.
- ObjectStatus int
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- ObjectVersion int
- The object version.
- ParentReves List<WorkspaceApplication Patch Parent Ref> 
- A reference to the object's parent.
- PatchObject List<WorkspaceMetadatas Application Patch Patch Object Metadata> 
- List of objects that are published or unpublished in this patch.
- PatchStatus string
- Status of the patch applied or being applied on the application
- PatchType string
- The type of the patch applied or being applied on the application.
- RegistryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- TimePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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 application key.
- ApplicationVersion int
- The application version of the patch.
- DependentObject []WorkspaceMetadatas Application Patch Dependent Object Metadata Args 
- List of dependent objects in this patch.
- Description string
- Detailed description for the object.
- ErrorMessages map[string]string
- The errors encountered while applying the patch, if any.
- Identifier string
- 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 object's key.
- KeyMap map[string]string
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
[]WorkspaceApplication Patch Metadata Args 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- ModelType string
- The object type.
- ModelVersion string
- The object's model version.
- Name string
- 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.
- ObjectKeys []string
- The array of object keys to publish into application.
- ObjectStatus int
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- ObjectVersion int
- The object version.
- ParentReves []WorkspaceApplication Patch Parent Ref Args 
- A reference to the object's parent.
- PatchObject []WorkspaceMetadatas Application Patch Patch Object Metadata Args 
- List of objects that are published or unpublished in this patch.
- PatchStatus string
- Status of the patch applied or being applied on the application
- PatchType string
- The type of the patch applied or being applied on the application.
- RegistryMetadata WorkspaceApplication Patch Registry Metadata Args 
- Information about the object and its parent.
- TimePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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 application key.
- applicationVersion Integer
- The application version of the patch.
- dependentObject List<WorkspaceMetadatas Application Patch Dependent Object Metadata> 
- List of dependent objects in this patch.
- description String
- Detailed description for the object.
- errorMessages Map<String,String>
- The errors encountered while applying the patch, if any.
- identifier String
- 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 object's key.
- keyMap Map<String,String>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
List<WorkspaceApplication Patch Metadata> 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType String
- The object type.
- modelVersion String
- The object's model version.
- name String
- 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.
- objectKeys List<String>
- The array of object keys to publish into application.
- objectStatus Integer
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- objectVersion Integer
- The object version.
- parentReves List<WorkspaceApplication Patch Parent Ref> 
- A reference to the object's parent.
- patchObject List<WorkspaceMetadatas Application Patch Patch Object Metadata> 
- List of objects that are published or unpublished in this patch.
- patchStatus String
- Status of the patch applied or being applied on the application
- patchType String
- The type of the patch applied or being applied on the application.
- registryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- timePatched String
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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 application key.
- applicationVersion number
- The application version of the patch.
- dependentObject WorkspaceMetadatas Application Patch Dependent Object Metadata[] 
- List of dependent objects in this patch.
- description string
- Detailed description for the object.
- errorMessages {[key: string]: string}
- The errors encountered while applying the patch, if any.
- identifier string
- 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 object's key.
- keyMap {[key: string]: string}
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
WorkspaceApplication Patch Metadata[] 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType string
- The object type.
- modelVersion string
- The object's model version.
- name string
- 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.
- objectKeys string[]
- The array of object keys to publish into application.
- objectStatus number
- The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- objectVersion number
- The object version.
- parentReves WorkspaceApplication Patch Parent Ref[] 
- A reference to the object's parent.
- patchObject WorkspaceMetadatas Application Patch Patch Object Metadata[] 
- List of objects that are published or unpublished in this patch.
- patchStatus string
- Status of the patch applied or being applied on the application
- patchType string
- The type of the patch applied or being applied on the application.
- registryMetadata WorkspaceApplication Patch Registry Metadata 
- Information about the object and its parent.
- timePatched string
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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 application key.
- application_version int
- The application version of the patch.
- dependent_object_ Sequence[Workspacemetadatas Application Patch Dependent Object Metadata Args] 
- List of dependent objects in this patch.
- description str
- Detailed description for the object.
- error_messages Mapping[str, str]
- The errors encountered while applying the patch, if any.
- identifier str
- 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 object's key.
- key_map Mapping[str, str]
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Sequence[WorkspaceApplication Patch Metadata Args] 
- A summary type containing information about the object including its key, name and when/who created/updated it.
- model_type str
- The object type.
- model_version str
- The object's model version.
- name str
- 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_keys Sequence[str]
- The array of object keys to publish into application.
- object_status int
- 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[WorkspaceApplication Patch Parent Ref Args] 
- A reference to the object's parent.
- patch_object_ Sequence[Workspacemetadatas Application Patch Patch Object Metadata Args] 
- List of objects that are published or unpublished in this patch.
- patch_status str
- Status of the patch applied or being applied on the application
- patch_type str
- The type of the patch applied or being applied on the application.
- registry_metadata WorkspaceApplication Patch Registry Metadata Args 
- Information about the object and its parent.
- time_patched str
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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 application key.
- applicationVersion Number
- The application version of the patch.
- dependentObject List<Property Map>Metadatas 
- List of dependent objects in this patch.
- description String
- Detailed description for the object.
- errorMessages Map<String>
- The errors encountered while applying the patch, if any.
- identifier String
- 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 object's key.
- keyMap Map<String>
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas List<Property Map>
- A summary type containing information about the object including its key, name and when/who created/updated it.
- modelType String
- The object type.
- modelVersion String
- The object's model version.
- name String
- 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.
- objectKeys List<String>
- The array of object keys to publish into application.
- objectStatus Number
- 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.
- patchObject List<Property Map>Metadatas 
- List of objects that are published or unpublished in this patch.
- patchStatus String
- Status of the patch applied or being applied on the application
- patchType String
- The type of the patch applied or being applied on the application.
- registryMetadata Property Map
- Information about the object and its parent.
- timePatched String
- The date and time the patch was applied, in the timestamp format defined by RFC3339.
- 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
WorkspaceApplicationPatchDependentObjectMetadata, WorkspaceApplicationPatchDependentObjectMetadataArgs            
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- 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 object's key.
- Name string
- 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
- 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 object's key.
- Name string
- 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
- 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 object's key.
- name String
- 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
- 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 object's key.
- name string
- 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
- 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 object's key.
- name str
- 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
- 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 object's key.
- name String
- 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.
WorkspaceApplicationPatchMetadata, WorkspaceApplicationPatchMetadataArgs        
- AggregatorKey string
- The owning object key for this object.
- Aggregators
List<WorkspaceApplication Patch Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics List<WorkspaceApplication Patch Metadata Count Statistic> 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- The user that created the object.
- IdentifierPath string
- The full path to identify this object.
- InfoFields Dictionary<string, string>
- Information property fields.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- RegistryVersion int
- The registry version of the object.
- TimeCreated string
- The date and time that the object was created.
- TimeUpdated string
- The date and time that the object was updated.
- UpdatedBy string
- The user that updated the object.
- UpdatedBy stringName 
- The user that updated the object.
- AggregatorKey string
- The owning object key for this object.
- Aggregators
[]WorkspaceApplication Patch Metadata Aggregator 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics []WorkspaceApplication Patch Metadata Count Statistic 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- The user that created the object.
- IdentifierPath string
- The full path to identify this object.
- InfoFields map[string]string
- Information property fields.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- RegistryVersion int
- The registry version of the object.
- TimeCreated string
- The date and time that the object was created.
- TimeUpdated string
- The date and time that the object was updated.
- UpdatedBy string
- The user that updated the object.
- UpdatedBy stringName 
- The user that updated the object.
- aggregatorKey String
- The owning object key for this object.
- aggregators
List<WorkspaceApplication Patch Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics List<WorkspaceApplication Patch Metadata Count Statistic> 
- A count statistics.
- createdBy String
- The user that created the object.
- createdBy StringName 
- The user that created the object.
- identifierPath String
- The full path to identify this object.
- infoFields Map<String,String>
- Information property fields.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion Integer
- The registry version of the object.
- timeCreated String
- The date and time that the object was created.
- timeUpdated String
- The date and time that the object was updated.
- updatedBy String
- The user that updated the object.
- updatedBy StringName 
- The user that updated the object.
- aggregatorKey string
- The owning object key for this object.
- aggregators
WorkspaceApplication Patch Metadata Aggregator[] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics WorkspaceApplication Patch Metadata Count Statistic[] 
- A count statistics.
- createdBy string
- The user that created the object.
- createdBy stringName 
- The user that created the object.
- identifierPath string
- The full path to identify this object.
- infoFields {[key: string]: string}
- Information property fields.
- isFavorite boolean
- Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion number
- The registry version of the object.
- timeCreated string
- The date and time that the object was created.
- timeUpdated string
- The date and time that the object was updated.
- updatedBy string
- The user that updated the object.
- updatedBy stringName 
- The user that updated the object.
- aggregator_key str
- The owning object key for this object.
- aggregators
Sequence[WorkspaceApplication Patch Metadata Aggregator] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- count_statistics Sequence[WorkspaceApplication Patch Metadata Count Statistic] 
- A count statistics.
- created_by str
- The user that created the object.
- created_by_ strname 
- The user that created the object.
- identifier_path str
- The full path to identify this object.
- info_fields Mapping[str, str]
- Information property fields.
- is_favorite bool
- Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_version int
- The registry version of the object.
- time_created str
- The date and time that the object was created.
- time_updated str
- The date and time that the object was updated.
- updated_by str
- The user that updated the object.
- updated_by_ strname 
- The user that updated the object.
- aggregatorKey String
- The owning object key for this object.
- aggregators List<Property Map>
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics List<Property Map>
- A count statistics.
- createdBy String
- The user that created the object.
- createdBy StringName 
- The user that created the object.
- identifierPath String
- The full path to identify this object.
- infoFields Map<String>
- Information property fields.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion Number
- The registry version of the object.
- timeCreated String
- The date and time that the object was created.
- timeUpdated String
- The date and time that the object was updated.
- updatedBy String
- The user that updated the object.
- updatedBy StringName 
- The user that updated the object.
WorkspaceApplicationPatchMetadataAggregator, WorkspaceApplicationPatchMetadataAggregatorArgs          
- Description string
- Detailed description for the object.
- Identifier string
- 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 object's key.
- Name string
- 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
- Detailed description for the object.
- Identifier string
- 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 object's key.
- Name string
- 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
- Detailed description for the object.
- identifier String
- 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 object's key.
- name String
- 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
- Detailed description for the object.
- identifier string
- 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 object's key.
- name string
- 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
- Detailed description for the object.
- identifier str
- 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 object's key.
- name str
- 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
- Detailed description for the object.
- identifier String
- 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 object's key.
- name String
- 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.
WorkspaceApplicationPatchMetadataCountStatistic, WorkspaceApplicationPatchMetadataCountStatisticArgs            
- ObjectType List<WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List> 
- The array of statistics.
- ObjectType []WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List 
- The array of statistics.
- objectType List<WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List> 
- The array of statistics.
- objectType WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List[] 
- The array of statistics.
- object_type_ Sequence[Workspacecount_ lists Application Patch Metadata Count Statistic Object Type Count List] 
- The array of statistics.
- objectType List<Property Map>Count Lists 
- The array of statistics.
WorkspaceApplicationPatchMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationPatchMetadataCountStatisticObjectTypeCountListArgs                    
- 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.
WorkspaceApplicationPatchParentRef, WorkspaceApplicationPatchParentRefArgs          
- parent str
- Key of the parent object.
- root_doc_ strid 
- Key of the root document object.
WorkspaceApplicationPatchPatchObjectMetadata, WorkspaceApplicationPatchPatchObjectMetadataArgs            
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- 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 object's key.
- Name string
- 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
- 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 object's key.
- Name string
- 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
- 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 object's key.
- name String
- 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
- 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 object's key.
- name string
- 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
- 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 object's key.
- name str
- 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
- 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 object's key.
- name String
- 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.
WorkspaceApplicationPatchRegistryMetadata, WorkspaceApplicationPatchRegistryMetadataArgs          
- 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.
Import
WorkspaceApplicationPatches can be imported using the id, e.g.
$ pulumi import oci:DataIntegration/workspaceApplicationPatch:WorkspaceApplicationPatch test_workspace_application_patch "workspaces/{workspaceId}/applications/{applicationKey}/patches/{patchKey}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.