1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. getWorkspaceApplicationPatches
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataIntegration.getWorkspaceApplicationPatches

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Workspace Application Patches in Oracle Cloud Infrastructure Data Integration service.

Retrieves a list of patches in an application and provides options to filter the list. For listing changes based on a period and logical objects changed, see ListPatchChanges API.

Example Usage

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

const testWorkspaceApplicationPatches = oci.DataIntegration.getWorkspaceApplicationPatches({
    applicationKey: workspaceApplicationPatchApplicationKey,
    workspaceId: testWorkspace.id,
    fields: workspaceApplicationPatchFields,
    identifiers: workspaceApplicationPatchIdentifier,
    name: workspaceApplicationPatchName,
});
Copy
import pulumi
import pulumi_oci as oci

test_workspace_application_patches = oci.DataIntegration.get_workspace_application_patches(application_key=workspace_application_patch_application_key,
    workspace_id=test_workspace["id"],
    fields=workspace_application_patch_fields,
    identifiers=workspace_application_patch_identifier,
    name=workspace_application_patch_name)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataintegration.GetWorkspaceApplicationPatches(ctx, &dataintegration.GetWorkspaceApplicationPatchesArgs{
			ApplicationKey: workspaceApplicationPatchApplicationKey,
			WorkspaceId:    testWorkspace.Id,
			Fields:         workspaceApplicationPatchFields,
			Identifiers:    workspaceApplicationPatchIdentifier,
			Name:           pulumi.StringRef(workspaceApplicationPatchName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testWorkspaceApplicationPatches = Oci.DataIntegration.GetWorkspaceApplicationPatches.Invoke(new()
    {
        ApplicationKey = workspaceApplicationPatchApplicationKey,
        WorkspaceId = testWorkspace.Id,
        Fields = workspaceApplicationPatchFields,
        Identifiers = workspaceApplicationPatchIdentifier,
        Name = workspaceApplicationPatchName,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.DataIntegrationFunctions;
import com.pulumi.oci.DataIntegration.inputs.GetWorkspaceApplicationPatchesArgs;
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) {
        final var testWorkspaceApplicationPatches = DataIntegrationFunctions.getWorkspaceApplicationPatches(GetWorkspaceApplicationPatchesArgs.builder()
            .applicationKey(workspaceApplicationPatchApplicationKey)
            .workspaceId(testWorkspace.id())
            .fields(workspaceApplicationPatchFields)
            .identifiers(workspaceApplicationPatchIdentifier)
            .name(workspaceApplicationPatchName)
            .build());

    }
}
Copy
variables:
  testWorkspaceApplicationPatches:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaceApplicationPatches
      arguments:
        applicationKey: ${workspaceApplicationPatchApplicationKey}
        workspaceId: ${testWorkspace.id}
        fields: ${workspaceApplicationPatchFields}
        identifiers: ${workspaceApplicationPatchIdentifier}
        name: ${workspaceApplicationPatchName}
Copy

Using getWorkspaceApplicationPatches

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getWorkspaceApplicationPatches(args: GetWorkspaceApplicationPatchesArgs, opts?: InvokeOptions): Promise<GetWorkspaceApplicationPatchesResult>
function getWorkspaceApplicationPatchesOutput(args: GetWorkspaceApplicationPatchesOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceApplicationPatchesResult>
Copy
def get_workspace_application_patches(application_key: Optional[str] = None,
                                      fields: Optional[Sequence[str]] = None,
                                      filters: Optional[Sequence[_dataintegration.GetWorkspaceApplicationPatchesFilter]] = None,
                                      identifiers: Optional[Sequence[str]] = None,
                                      name: Optional[str] = None,
                                      workspace_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetWorkspaceApplicationPatchesResult
def get_workspace_application_patches_output(application_key: Optional[pulumi.Input[str]] = None,
                                      fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceApplicationPatchesFilterArgs]]]] = None,
                                      identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                      name: Optional[pulumi.Input[str]] = None,
                                      workspace_id: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceApplicationPatchesResult]
Copy
func GetWorkspaceApplicationPatches(ctx *Context, args *GetWorkspaceApplicationPatchesArgs, opts ...InvokeOption) (*GetWorkspaceApplicationPatchesResult, error)
func GetWorkspaceApplicationPatchesOutput(ctx *Context, args *GetWorkspaceApplicationPatchesOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationPatchesResultOutput
Copy

> Note: This function is named GetWorkspaceApplicationPatches in the Go SDK.

public static class GetWorkspaceApplicationPatches 
{
    public static Task<GetWorkspaceApplicationPatchesResult> InvokeAsync(GetWorkspaceApplicationPatchesArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkspaceApplicationPatchesResult> Invoke(GetWorkspaceApplicationPatchesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWorkspaceApplicationPatchesResult> getWorkspaceApplicationPatches(GetWorkspaceApplicationPatchesArgs args, InvokeOptions options)
public static Output<GetWorkspaceApplicationPatchesResult> getWorkspaceApplicationPatches(GetWorkspaceApplicationPatchesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataIntegration/getWorkspaceApplicationPatches:getWorkspaceApplicationPatches
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApplicationKey This property is required. string
The application key.
WorkspaceId This property is required. string
The workspace ID.
Fields List<string>
Specifies the fields to get for an object.
Filters Changes to this property will trigger replacement. List<GetWorkspaceApplicationPatchesFilter>
Identifiers List<string>
Used to filter by the identifier of the published object.
Name string
Used to filter by the name of the object.
ApplicationKey This property is required. string
The application key.
WorkspaceId This property is required. string
The workspace ID.
Fields []string
Specifies the fields to get for an object.
Filters Changes to this property will trigger replacement. []GetWorkspaceApplicationPatchesFilter
Identifiers []string
Used to filter by the identifier of the published object.
Name string
Used to filter by the name of the object.
applicationKey This property is required. String
The application key.
workspaceId This property is required. String
The workspace ID.
fields List<String>
Specifies the fields to get for an object.
filters Changes to this property will trigger replacement. List<GetWorkspaceApplicationPatchesFilter>
identifiers List<String>
Used to filter by the identifier of the published object.
name String
Used to filter by the name of the object.
applicationKey This property is required. string
The application key.
workspaceId This property is required. string
The workspace ID.
fields string[]
Specifies the fields to get for an object.
filters Changes to this property will trigger replacement. GetWorkspaceApplicationPatchesFilter[]
identifiers string[]
Used to filter by the identifier of the published object.
name string
Used to filter by the name of the object.
application_key This property is required. str
The application key.
workspace_id This property is required. str
The workspace ID.
fields Sequence[str]
Specifies the fields to get for an object.
filters Changes to this property will trigger replacement. Sequence[dataintegration.GetWorkspaceApplicationPatchesFilter]
identifiers Sequence[str]
Used to filter by the identifier of the published object.
name str
Used to filter by the name of the object.
applicationKey This property is required. String
The application key.
workspaceId This property is required. String
The workspace ID.
fields List<String>
Specifies the fields to get for an object.
filters Changes to this property will trigger replacement. List<Property Map>
identifiers List<String>
Used to filter by the identifier of the published object.
name String
Used to filter by the name of the object.

getWorkspaceApplicationPatches Result

The following output properties are available:

ApplicationKey string
Id string
The provider-assigned unique ID for this managed resource.
PatchSummaryCollections List<GetWorkspaceApplicationPatchesPatchSummaryCollection>
The list of patch_summary_collection.
WorkspaceId string
Fields List<string>
Filters List<GetWorkspaceApplicationPatchesFilter>
Identifiers List<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.
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.
ApplicationKey string
Id string
The provider-assigned unique ID for this managed resource.
PatchSummaryCollections []GetWorkspaceApplicationPatchesPatchSummaryCollection
The list of patch_summary_collection.
WorkspaceId string
Fields []string
Filters []GetWorkspaceApplicationPatchesFilter
Identifiers []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.
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.
applicationKey String
id String
The provider-assigned unique ID for this managed resource.
patchSummaryCollections List<GetWorkspaceApplicationPatchesPatchSummaryCollection>
The list of patch_summary_collection.
workspaceId String
fields List<String>
filters List<GetWorkspaceApplicationPatchesFilter>
identifiers List<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.
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.
applicationKey string
id string
The provider-assigned unique ID for this managed resource.
patchSummaryCollections GetWorkspaceApplicationPatchesPatchSummaryCollection[]
The list of patch_summary_collection.
workspaceId string
fields string[]
filters GetWorkspaceApplicationPatchesFilter[]
identifiers 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.
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.
application_key str
id str
The provider-assigned unique ID for this managed resource.
patch_summary_collections Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollection]
The list of patch_summary_collection.
workspace_id str
fields Sequence[str]
filters Sequence[dataintegration.GetWorkspaceApplicationPatchesFilter]
identifiers Sequence[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.
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.
applicationKey String
id String
The provider-assigned unique ID for this managed resource.
patchSummaryCollections List<Property Map>
The list of patch_summary_collection.
workspaceId String
fields List<String>
filters List<Property Map>
identifiers List<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.
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.

Supporting Types

GetWorkspaceApplicationPatchesFilter

Name This property is required. string
Used to filter by the name of the object.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Used to filter by the name of the object.
Values This property is required. []string
Regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean
name This property is required. string
Used to filter by the name of the object.
values This property is required. string[]
regex boolean
name This property is required. str
Used to filter by the name of the object.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean

GetWorkspaceApplicationPatchesPatchSummaryCollection

items This property is required. List<Property Map>

GetWorkspaceApplicationPatchesPatchSummaryCollectionItem

ApplicationKey This property is required. string
The application key.
ApplicationVersion This property is required. int
The application version of the patch.
DependentObjectMetadatas This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata>
List of dependent objects in this patch.
Description This property is required. string
The description of the aggregator.
ErrorMessages This property is required. Dictionary<string, string>
The errors encountered while applying the patch, if any.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
KeyMap This property is required. 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 This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType This property is required. string
The object type.
ModelVersion This property is required. string
The object's model version.
Name This property is required. string
Used to filter by the name of the object.
ObjectKeys This property is required. List<string>
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
The object version.
ParentReves This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef>
A reference to the object's parent.
PatchObjectMetadatas This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata>
List of objects that are published or unpublished in this patch.
PatchStatus This property is required. string
Status of the patch applied or being applied on the application
PatchType This property is required. string
The type of the patch applied or being applied on the application.
RegistryMetadata This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
TimePatched This property is required. string
The date and time the patch was applied, in the timestamp format defined by RFC3339.
WorkspaceId This property is required. string
The workspace ID.
ApplicationKey This property is required. string
The application key.
ApplicationVersion This property is required. int
The application version of the patch.
DependentObjectMetadatas This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata
List of dependent objects in this patch.
Description This property is required. string
The description of the aggregator.
ErrorMessages This property is required. map[string]string
The errors encountered while applying the patch, if any.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
KeyMap This property is required. 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 This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType This property is required. string
The object type.
ModelVersion This property is required. string
The object's model version.
Name This property is required. string
Used to filter by the name of the object.
ObjectKeys This property is required. []string
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
The object version.
ParentReves This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef
A reference to the object's parent.
PatchObjectMetadatas This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata
List of objects that are published or unpublished in this patch.
PatchStatus This property is required. string
Status of the patch applied or being applied on the application
PatchType This property is required. string
The type of the patch applied or being applied on the application.
RegistryMetadata This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
TimePatched This property is required. string
The date and time the patch was applied, in the timestamp format defined by RFC3339.
WorkspaceId This property is required. string
The workspace ID.
applicationKey This property is required. String
The application key.
applicationVersion This property is required. Integer
The application version of the patch.
dependentObjectMetadatas This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata>
List of dependent objects in this patch.
description This property is required. String
The description of the aggregator.
errorMessages This property is required. Map<String,String>
The errors encountered while applying the patch, if any.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
keyMap This property is required. 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 This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata>
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. String
The object type.
modelVersion This property is required. String
The object's model version.
name This property is required. String
Used to filter by the name of the object.
objectKeys This property is required. List<String>
objectStatus This property is required. Integer
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Integer
The object version.
parentReves This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef>
A reference to the object's parent.
patchObjectMetadatas This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata>
List of objects that are published or unpublished in this patch.
patchStatus This property is required. String
Status of the patch applied or being applied on the application
patchType This property is required. String
The type of the patch applied or being applied on the application.
registryMetadata This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
timePatched This property is required. String
The date and time the patch was applied, in the timestamp format defined by RFC3339.
workspaceId This property is required. String
The workspace ID.
applicationKey This property is required. string
The application key.
applicationVersion This property is required. number
The application version of the patch.
dependentObjectMetadatas This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata[]
List of dependent objects in this patch.
description This property is required. string
The description of the aggregator.
errorMessages This property is required. {[key: string]: string}
The errors encountered while applying the patch, if any.
identifier This property is required. string
Used to filter by the identifier of the published object.
key This property is required. string
The key of the object.
keyMap This property is required. {[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 This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata[]
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. string
The object type.
modelVersion This property is required. string
The object's model version.
name This property is required. string
Used to filter by the name of the object.
objectKeys This property is required. string[]
objectStatus This property is required. number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. number
The object version.
parentReves This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef[]
A reference to the object's parent.
patchObjectMetadatas This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata[]
List of objects that are published or unpublished in this patch.
patchStatus This property is required. string
Status of the patch applied or being applied on the application
patchType This property is required. string
The type of the patch applied or being applied on the application.
registryMetadata This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
timePatched This property is required. string
The date and time the patch was applied, in the timestamp format defined by RFC3339.
workspaceId This property is required. string
The workspace ID.
application_key This property is required. str
The application key.
application_version This property is required. int
The application version of the patch.
dependent_object_metadatas This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata]
List of dependent objects in this patch.
description This property is required. str
The description of the aggregator.
error_messages This property is required. Mapping[str, str]
The errors encountered while applying the patch, if any.
identifier This property is required. str
Used to filter by the identifier of the published object.
key This property is required. str
The key of the object.
key_map This property is required. 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 This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata]
A summary type containing information about the object including its key, name and when/who created/updated it.
model_type This property is required. str
The object type.
model_version This property is required. str
The object's model version.
name This property is required. str
Used to filter by the name of the object.
object_keys This property is required. Sequence[str]
object_status This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version This property is required. int
The object version.
parent_reves This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef]
A reference to the object's parent.
patch_object_metadatas This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata]
List of objects that are published or unpublished in this patch.
patch_status This property is required. str
Status of the patch applied or being applied on the application
patch_type This property is required. str
The type of the patch applied or being applied on the application.
registry_metadata This property is required. dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
time_patched This property is required. str
The date and time the patch was applied, in the timestamp format defined by RFC3339.
workspace_id This property is required. str
The workspace ID.
applicationKey This property is required. String
The application key.
applicationVersion This property is required. Number
The application version of the patch.
dependentObjectMetadatas This property is required. List<Property Map>
List of dependent objects in this patch.
description This property is required. String
The description of the aggregator.
errorMessages This property is required. Map<String>
The errors encountered while applying the patch, if any.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
keyMap This property is required. 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 This property is required. List<Property Map>
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. String
The object type.
modelVersion This property is required. String
The object's model version.
name This property is required. String
Used to filter by the name of the object.
objectKeys This property is required. List<String>
objectStatus This property is required. Number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Number
The object version.
parentReves This property is required. List<Property Map>
A reference to the object's parent.
patchObjectMetadatas This property is required. List<Property Map>
List of objects that are published or unpublished in this patch.
patchStatus This property is required. String
Status of the patch applied or being applied on the application
patchType This property is required. String
The type of the patch applied or being applied on the application.
registryMetadata This property is required. Property Map
timePatched This property is required. String
The date and time the patch was applied, in the timestamp format defined by RFC3339.
workspaceId This property is required. String
The workspace ID.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata

Action This property is required. string
The patch action indicating if object was created, updated, or deleted.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion This property is required. int
The object version.
Type This property is required. string
The type of the object in patch.
Action This property is required. string
The patch action indicating if object was created, updated, or deleted.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion This property is required. int
The object version.
Type This property is required. string
The type of the object in patch.
action This property is required. String
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. Integer
The object version.
type This property is required. String
The type of the object in patch.
action This property is required. string
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. string
Used to filter by the identifier of the published object.
key This property is required. string
The key of the object.
name This property is required. string
Used to filter by the name of the object.
namePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. number
The object version.
type This property is required. string
The type of the object in patch.
action This property is required. str
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. str
Used to filter by the identifier of the published object.
key This property is required. str
The key of the object.
name This property is required. str
Used to filter by the name of the object.
name_path This property is required. str
The fully qualified path of the published object, which would include its project and folder.
object_version This property is required. int
The object version.
type This property is required. str
The type of the object in patch.
action This property is required. String
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. Number
The object version.
type This property is required. String
The type of the object in patch.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata

AggregatorKey This property is required. string
The owning object key for this object.
Aggregators This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic>
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. Dictionary<string, string>
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. 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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
AggregatorKey This property is required. string
The owning object key for this object.
Aggregators This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics This property is required. []GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. map[string]string
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. []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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
aggregatorKey This property is required. String
The owning object key for this object.
aggregators This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. List<GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic>
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String,String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Integer
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.
aggregatorKey This property is required. string
The owning object key for this object.
aggregators This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator[]
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic[]
A count statistics.
createdBy This property is required. string
The user that created the object.
createdByName This property is required. string
The user that created the object.
identifierPath This property is required. string
The full path to identify this object.
infoFields This property is required. {[key: string]: string}
Information property fields.
isFavorite This property is required. boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. number
The registry version of the object.
timeCreated This property is required. string
The date and time that the object was created.
timeUpdated This property is required. string
The date and time that the object was updated.
updatedBy This property is required. string
The user that updated the object.
updatedByName This property is required. string
The user that updated the object.
aggregator_key This property is required. str
The owning object key for this object.
aggregators This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator]
A summary type containing information about the object's aggregator including its type, key, name and description.
count_statistics This property is required. Sequence[dataintegration.GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic]
A count statistics.
created_by This property is required. str
The user that created the object.
created_by_name This property is required. str
The user that created the object.
identifier_path This property is required. str
The full path to identify this object.
info_fields This property is required. Mapping[str, str]
Information property fields.
is_favorite This property is required. bool
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. int
The registry version of the object.
time_created This property is required. str
The date and time that the object was created.
time_updated This property is required. str
The date and time that the object was updated.
updated_by This property is required. str
The user that updated the object.
updated_by_name This property is required. str
The user that updated the object.
aggregatorKey This property is required. String
The owning object key for this object.
aggregators This property is required. List<Property Map>
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. List<Property Map>
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Number
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator

Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. string
The type of the object in patch.
Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. string
The type of the object in patch.
description This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. String
The type of the object in patch.
description This property is required. string
The description of the aggregator.
identifier This property is required. string
Used to filter by the identifier of the published object.
key This property is required. string
The key of the object.
name This property is required. string
Used to filter by the name of the object.
type This property is required. string
The type of the object in patch.
description This property is required. str
The description of the aggregator.
identifier This property is required. str
Used to filter by the identifier of the published object.
key This property is required. str
The key of the object.
name This property is required. str
Used to filter by the name of the object.
type This property is required. str
The type of the object in patch.
description This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. String
The type of the object in patch.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic

objectTypeCountLists This property is required. List<Property Map>
The array of statistics.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatisticObjectTypeCountList

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

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef

Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.
parent This property is required. string
Key of the parent object.
rootDocId This property is required. string
Key of the root document object.
parent This property is required. str
Key of the parent object.
root_doc_id This property is required. str
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata

Action This property is required. string
The patch action indicating if object was created, updated, or deleted.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion This property is required. int
The object version.
Type This property is required. string
The type of the object in patch.
Action This property is required. string
The patch action indicating if object was created, updated, or deleted.
Identifier This property is required. string
Used to filter by the identifier of the published object.
Key This property is required. string
The key of the object.
Name This property is required. string
Used to filter by the name of the object.
NamePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
ObjectVersion This property is required. int
The object version.
Type This property is required. string
The type of the object in patch.
action This property is required. String
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. Integer
The object version.
type This property is required. String
The type of the object in patch.
action This property is required. string
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. string
Used to filter by the identifier of the published object.
key This property is required. string
The key of the object.
name This property is required. string
Used to filter by the name of the object.
namePath This property is required. string
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. number
The object version.
type This property is required. string
The type of the object in patch.
action This property is required. str
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. str
Used to filter by the identifier of the published object.
key This property is required. str
The key of the object.
name This property is required. str
Used to filter by the name of the object.
name_path This property is required. str
The fully qualified path of the published object, which would include its project and folder.
object_version This property is required. int
The object version.
type This property is required. str
The type of the object in patch.
action This property is required. String
The patch action indicating if object was created, updated, or deleted.
identifier This property is required. String
Used to filter by the identifier of the published object.
key This property is required. String
The key of the object.
name This property is required. String
Used to filter by the name of the object.
namePath This property is required. String
The fully qualified path of the published object, which would include its project and folder.
objectVersion This property is required. Number
The object version.
type This property is required. String
The type of the object in patch.

GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata

AggregatorKey This property is required. string
The owning object key for this object.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Key This property is required. string
The key of the object.
Labels This property is required. 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 This property is required. int
The registry version of the object.
AggregatorKey This property is required. string
The owning object key for this object.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Key This property is required. string
The key of the object.
Labels This property is required. []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 This property is required. int
The registry version of the object.
aggregatorKey This property is required. String
The owning object key for this object.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
key This property is required. String
The key of the object.
labels This property is required. 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 This property is required. Integer
The registry version of the object.
aggregatorKey This property is required. string
The owning object key for this object.
isFavorite This property is required. boolean
Specifies whether this object is a favorite or not.
key This property is required. string
The key of the object.
labels This property is required. 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 This property is required. number
The registry version of the object.
aggregator_key This property is required. str
The owning object key for this object.
is_favorite This property is required. bool
Specifies whether this object is a favorite or not.
key This property is required. str
The key of the object.
labels This property is required. 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 This property is required. int
The registry version of the object.
aggregatorKey This property is required. String
The owning object key for this object.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
key This property is required. String
The key of the object.
labels This property is required. 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 This property is required. Number
The registry version of the object.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi