Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.DataIntegration.getWorkspaceApplications
Explore with Pulumi AI
This data source provides the list of Workspace Applications in Oracle Cloud Infrastructure Data Integration service.
Retrieves a list of applications and provides options to filter the list.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceApplications = oci.DataIntegration.getWorkspaceApplications({
    workspaceId: testWorkspace.id,
    fields: workspaceApplicationFields,
    identifiers: workspaceApplicationIdentifier,
    name: workspaceApplicationName,
    nameContains: workspaceApplicationNameContains,
});
import pulumi
import pulumi_oci as oci
test_workspace_applications = oci.DataIntegration.get_workspace_applications(workspace_id=test_workspace["id"],
    fields=workspace_application_fields,
    identifiers=workspace_application_identifier,
    name=workspace_application_name,
    name_contains=workspace_application_name_contains)
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.GetWorkspaceApplications(ctx, &dataintegration.GetWorkspaceApplicationsArgs{
			WorkspaceId:  testWorkspace.Id,
			Fields:       workspaceApplicationFields,
			Identifiers:  workspaceApplicationIdentifier,
			Name:         pulumi.StringRef(workspaceApplicationName),
			NameContains: pulumi.StringRef(workspaceApplicationNameContains),
		}, nil)
		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 testWorkspaceApplications = Oci.DataIntegration.GetWorkspaceApplications.Invoke(new()
    {
        WorkspaceId = testWorkspace.Id,
        Fields = workspaceApplicationFields,
        Identifiers = workspaceApplicationIdentifier,
        Name = workspaceApplicationName,
        NameContains = workspaceApplicationNameContains,
    });
});
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.GetWorkspaceApplicationsArgs;
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 testWorkspaceApplications = DataIntegrationFunctions.getWorkspaceApplications(GetWorkspaceApplicationsArgs.builder()
            .workspaceId(testWorkspace.id())
            .fields(workspaceApplicationFields)
            .identifiers(workspaceApplicationIdentifier)
            .name(workspaceApplicationName)
            .nameContains(workspaceApplicationNameContains)
            .build());
    }
}
variables:
  testWorkspaceApplications:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaceApplications
      arguments:
        workspaceId: ${testWorkspace.id}
        fields: ${workspaceApplicationFields}
        identifiers: ${workspaceApplicationIdentifier}
        name: ${workspaceApplicationName}
        nameContains: ${workspaceApplicationNameContains}
Using getWorkspaceApplications
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 getWorkspaceApplications(args: GetWorkspaceApplicationsArgs, opts?: InvokeOptions): Promise<GetWorkspaceApplicationsResult>
function getWorkspaceApplicationsOutput(args: GetWorkspaceApplicationsOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceApplicationsResult>def get_workspace_applications(fields: Optional[Sequence[str]] = None,
                               filters: Optional[Sequence[_dataintegration.GetWorkspaceApplicationsFilter]] = None,
                               identifiers: Optional[Sequence[str]] = None,
                               name: Optional[str] = None,
                               name_contains: Optional[str] = None,
                               workspace_id: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetWorkspaceApplicationsResult
def get_workspace_applications_output(fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceApplicationsFilterArgs]]]] = None,
                               identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               name: Optional[pulumi.Input[str]] = None,
                               name_contains: Optional[pulumi.Input[str]] = None,
                               workspace_id: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceApplicationsResult]func GetWorkspaceApplications(ctx *Context, args *GetWorkspaceApplicationsArgs, opts ...InvokeOption) (*GetWorkspaceApplicationsResult, error)
func GetWorkspaceApplicationsOutput(ctx *Context, args *GetWorkspaceApplicationsOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationsResultOutput> Note: This function is named GetWorkspaceApplications in the Go SDK.
public static class GetWorkspaceApplications 
{
    public static Task<GetWorkspaceApplicationsResult> InvokeAsync(GetWorkspaceApplicationsArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkspaceApplicationsResult> Invoke(GetWorkspaceApplicationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetWorkspaceApplicationsResult> getWorkspaceApplications(GetWorkspaceApplicationsArgs args, InvokeOptions options)
public static Output<GetWorkspaceApplicationsResult> getWorkspaceApplications(GetWorkspaceApplicationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataIntegration/getWorkspaceApplications:getWorkspaceApplications
  arguments:
    # arguments dictionaryThe following arguments are supported:
- WorkspaceId string
- The workspace ID.
- Fields List<string>
- Specifies the fields to get for an object.
- Filters
List<GetWorkspace Applications Filter> 
- Identifiers List<string>
- Used to filter by the identifier of the published object.
- Name string
- Used to filter by the name of the object.
- NameContains string
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
- WorkspaceId string
- The workspace ID.
- Fields []string
- Specifies the fields to get for an object.
- Filters
[]GetWorkspace Applications Filter 
- Identifiers []string
- Used to filter by the identifier of the published object.
- Name string
- Used to filter by the name of the object.
- NameContains string
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspaceId String
- The workspace ID.
- fields List<String>
- Specifies the fields to get for an object.
- filters
List<GetWorkspace Applications Filter> 
- identifiers List<String>
- Used to filter by the identifier of the published object.
- name String
- Used to filter by the name of the object.
- nameContains String
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspaceId string
- The workspace ID.
- fields string[]
- Specifies the fields to get for an object.
- filters
GetWorkspace Applications Filter[] 
- identifiers string[]
- Used to filter by the identifier of the published object.
- name string
- Used to filter by the name of the object.
- nameContains string
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspace_id str
- The workspace ID.
- fields Sequence[str]
- Specifies the fields to get for an object.
- filters
Sequence[dataintegration.Get Workspace Applications Filter] 
- identifiers Sequence[str]
- Used to filter by the identifier of the published object.
- name str
- Used to filter by the name of the object.
- name_contains str
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspaceId String
- The workspace ID.
- fields List<String>
- Specifies the fields to get for an object.
- filters 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.
- nameContains String
- This parameter can be used to filter objects by the names that match partially or fully with the given value.
getWorkspaceApplications Result
The following output properties are available:
- ApplicationSummary List<GetCollections Workspace Applications Application Summary Collection> 
- The list of application_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- WorkspaceId string
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- Fields List<string>
- Filters
List<GetWorkspace Applications Filter> 
- 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.
- NameContains string
- ApplicationSummary []GetCollections Workspace Applications Application Summary Collection 
- The list of application_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- WorkspaceId string
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- Fields []string
- Filters
[]GetWorkspace Applications Filter 
- 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.
- NameContains string
- applicationSummary List<GetCollections Workspace Applications Application Summary Collection> 
- The list of application_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspaceId String
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- fields List<String>
- filters
List<GetWorkspace Applications Filter> 
- 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.
- nameContains String
- applicationSummary GetCollections Workspace Applications Application Summary Collection[] 
- The list of application_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- workspaceId string
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- fields string[]
- filters
GetWorkspace Applications Filter[] 
- 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.
- nameContains string
- application_summary_ Sequence[dataintegration.collections Get Workspace Applications Application Summary Collection] 
- The list of application_summary_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- workspace_id str
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- fields Sequence[str]
- filters
Sequence[dataintegration.Get Workspace Applications Filter] 
- 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.
- name_contains str
- applicationSummary List<Property Map>Collections 
- The list of application_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspaceId String
- The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
- 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.
- nameContains String
Supporting Types
GetWorkspaceApplicationsApplicationSummaryCollection     
GetWorkspaceApplicationsApplicationSummaryCollectionItem      
- ApplicationVersion int
- The source application version of the application.
- CompartmentId string
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Dictionary<string, string>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- DependentObject List<GetMetadatas Workspace Applications Application Summary Collection Item Dependent Object Metadata> 
- A list of dependent objects in this patch.
- Description string
- The description of the aggregator.
- DisplayName 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.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- OCID of the resource that is used to uniquely identify the application
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- 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<GetWorkspace Applications Application Summary Collection Item 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
- Used to filter by the name of the object.
- 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<GetWorkspace Applications Application Summary Collection Item Parent Ref> 
- A reference to the object's parent.
- PublishedObject List<GetMetadatas Workspace Applications Application Summary Collection Item Published Object Metadata> 
- A list of objects that are published or unpublished in this patch.
- RegistryMetadatas List<GetWorkspace Applications Application Summary Collection Item Registry Metadata> 
- SourceApplication List<GetInfos Workspace Applications Application Summary Collection Item Source Application Info> 
- The information about the application.
- State string
- The current state of the workspace.
- TimeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- TimePatched string
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- TimeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- WorkspaceId string
- The workspace ID.
- ApplicationVersion int
- The source application version of the application.
- CompartmentId string
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- map[string]string
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- DependentObject []GetMetadatas Workspace Applications Application Summary Collection Item Dependent Object Metadata 
- A list of dependent objects in this patch.
- Description string
- The description of the aggregator.
- DisplayName 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.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- OCID of the resource that is used to uniquely identify the application
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- 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
[]GetWorkspace Applications Application Summary Collection Item 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
- Used to filter by the name of the object.
- 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 []GetWorkspace Applications Application Summary Collection Item Parent Ref 
- A reference to the object's parent.
- PublishedObject []GetMetadatas Workspace Applications Application Summary Collection Item Published Object Metadata 
- A list of objects that are published or unpublished in this patch.
- RegistryMetadatas []GetWorkspace Applications Application Summary Collection Item Registry Metadata 
- SourceApplication []GetInfos Workspace Applications Application Summary Collection Item Source Application Info 
- The information about the application.
- State string
- The current state of the workspace.
- TimeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- TimePatched string
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- TimeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- WorkspaceId string
- The workspace ID.
- applicationVersion Integer
- The source application version of the application.
- compartmentId String
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Map<String,String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- dependentObject List<GetMetadatas Workspace Applications Application Summary Collection Item Dependent Object Metadata> 
- A list of dependent objects in this patch.
- description String
- The description of the aggregator.
- displayName 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.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- OCID of the resource that is used to uniquely identify the application
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- 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<GetWorkspace Applications Application Summary Collection Item 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
- Used to filter by the name of the object.
- 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<GetWorkspace Applications Application Summary Collection Item Parent Ref> 
- A reference to the object's parent.
- publishedObject List<GetMetadatas Workspace Applications Application Summary Collection Item Published Object Metadata> 
- A list of objects that are published or unpublished in this patch.
- registryMetadatas List<GetWorkspace Applications Application Summary Collection Item Registry Metadata> 
- sourceApplication List<GetInfos Workspace Applications Application Summary Collection Item Source Application Info> 
- The information about the application.
- state String
- The current state of the workspace.
- timeCreated String
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timePatched String
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- timeUpdated String
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspaceId String
- The workspace ID.
- applicationVersion number
- The source application version of the application.
- compartmentId string
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- {[key: string]: string}
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- dependentObject GetMetadatas Workspace Applications Application Summary Collection Item Dependent Object Metadata[] 
- A list of dependent objects in this patch.
- description string
- The description of the aggregator.
- displayName 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.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- OCID of the resource that is used to uniquely identify the application
- identifier string
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- 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
GetWorkspace Applications Application Summary Collection Item 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
- Used to filter by the name of the object.
- 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 GetWorkspace Applications Application Summary Collection Item Parent Ref[] 
- A reference to the object's parent.
- publishedObject GetMetadatas Workspace Applications Application Summary Collection Item Published Object Metadata[] 
- A list of objects that are published or unpublished in this patch.
- registryMetadatas GetWorkspace Applications Application Summary Collection Item Registry Metadata[] 
- sourceApplication GetInfos Workspace Applications Application Summary Collection Item Source Application Info[] 
- The information about the application.
- state string
- The current state of the workspace.
- timeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timePatched string
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- timeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspaceId string
- The workspace ID.
- application_version int
- The source application version of the application.
- compartment_id str
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Mapping[str, str]
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- dependent_object_ Sequence[dataintegration.metadatas Get Workspace Applications Application Summary Collection Item Dependent Object Metadata] 
- A list of dependent objects in this patch.
- description str
- The description of the aggregator.
- display_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.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- OCID of the resource that is used to uniquely identify the application
- identifier str
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- key_map Mapping[str, str]
- A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Sequence[dataintegration.Get Workspace Applications Application Summary Collection Item 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.
- model_version str
- The object's model version.
- name str
- Used to filter by the name of the object.
- 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[dataintegration.Get Workspace Applications Application Summary Collection Item Parent Ref] 
- A reference to the object's parent.
- published_object_ Sequence[dataintegration.metadatas Get Workspace Applications Application Summary Collection Item Published Object Metadata] 
- A list of objects that are published or unpublished in this patch.
- registry_metadatas Sequence[dataintegration.Get Workspace Applications Application Summary Collection Item Registry Metadata] 
- source_application_ Sequence[dataintegration.infos Get Workspace Applications Application Summary Collection Item Source Application Info] 
- The information about the application.
- state str
- The current state of the workspace.
- time_created str
- The date and time the application was created, in the timestamp format defined by RFC3339.
- time_patched str
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- time_updated str
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspace_id str
- The workspace ID.
- applicationVersion Number
- The source application version of the application.
- compartmentId String
- OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
- Map<String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
- dependentObject List<Property Map>Metadatas 
- A list of dependent objects in this patch.
- description String
- The description of the aggregator.
- displayName 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.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- OCID of the resource that is used to uniquely identify the application
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- 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
- Used to filter by the name of the object.
- 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.
- publishedObject List<Property Map>Metadatas 
- A list of objects that are published or unpublished in this patch.
- registryMetadatas List<Property Map>
- sourceApplication List<Property Map>Infos 
- The information about the application.
- state String
- The current state of the workspace.
- timeCreated String
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timePatched String
- The date and time the application was patched, in the timestamp format defined by RFC3339.
- timeUpdated String
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- workspaceId String
- The workspace ID.
GetWorkspaceApplicationsApplicationSummaryCollectionItemDependentObjectMetadata         
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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.
GetWorkspaceApplicationsApplicationSummaryCollectionItemMetadata       
- AggregatorKey string
- The owning object key for this object.
- Aggregators
List<GetWorkspace Applications Application Summary Collection Item Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics List<GetWorkspace Applications Application Summary Collection Item Metadata Count Statistic> 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- The user that created the object.
- IdentifierPath string
- The full path to identify this object.
- InfoFields Dictionary<string, string>
- Information property fields.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- RegistryVersion int
- The registry version of the object.
- TimeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- TimeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- UpdatedBy string
- The user that updated the object.
- UpdatedBy stringName 
- The user that updated the object.
- AggregatorKey string
- The owning object key for this object.
- Aggregators
[]GetWorkspace Applications Application Summary Collection Item Metadata Aggregator 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- CountStatistics []GetWorkspace Applications Application Summary Collection Item Metadata Count Statistic 
- A count statistics.
- CreatedBy string
- The user that created the object.
- CreatedBy stringName 
- The user that created the object.
- IdentifierPath string
- The full path to identify this object.
- InfoFields map[string]string
- Information property fields.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- RegistryVersion int
- The registry version of the object.
- TimeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- TimeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- UpdatedBy string
- The user that updated the object.
- UpdatedBy stringName 
- The user that updated the object.
- aggregatorKey String
- The owning object key for this object.
- aggregators
List<GetWorkspace Applications Application Summary Collection Item Metadata Aggregator> 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics List<GetWorkspace Applications Application Summary Collection Item Metadata Count Statistic> 
- A count statistics.
- createdBy String
- The user that created the object.
- createdBy StringName 
- The user that created the object.
- identifierPath String
- The full path to identify this object.
- infoFields Map<String,String>
- Information property fields.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion Integer
- The registry version of the object.
- timeCreated String
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timeUpdated String
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updatedBy String
- The user that updated the object.
- updatedBy StringName 
- The user that updated the object.
- aggregatorKey string
- The owning object key for this object.
- aggregators
GetWorkspace Applications Application Summary Collection Item Metadata Aggregator[] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics GetWorkspace Applications Application Summary Collection Item Metadata Count Statistic[] 
- A count statistics.
- createdBy string
- The user that created the object.
- createdBy stringName 
- The user that created the object.
- identifierPath string
- The full path to identify this object.
- infoFields {[key: string]: string}
- Information property fields.
- isFavorite boolean
- Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion number
- The registry version of the object.
- timeCreated string
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timeUpdated string
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updatedBy string
- The user that updated the object.
- updatedBy stringName 
- The user that updated the object.
- aggregator_key str
- The owning object key for this object.
- aggregators
Sequence[dataintegration.Get Workspace Applications Application Summary Collection Item Metadata Aggregator] 
- A summary type containing information about the object's aggregator including its type, key, name and description.
- count_statistics Sequence[dataintegration.Get Workspace Applications Application Summary Collection Item Metadata Count Statistic] 
- A count statistics.
- created_by str
- The user that created the object.
- created_by_ strname 
- The user that created the object.
- identifier_path str
- The full path to identify this object.
- info_fields Mapping[str, str]
- Information property fields.
- is_favorite bool
- Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_version int
- The registry version of the object.
- time_created str
- The date and time the application was created, in the timestamp format defined by RFC3339.
- time_updated str
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updated_by str
- The user that updated the object.
- updated_by_ strname 
- The user that updated the object.
- aggregatorKey String
- The owning object key for this object.
- aggregators List<Property Map>
- A summary type containing information about the object's aggregator including its type, key, name and description.
- countStatistics List<Property Map>
- A count statistics.
- createdBy String
- The user that created the object.
- createdBy StringName 
- The user that created the object.
- identifierPath String
- The full path to identify this object.
- infoFields Map<String>
- Information property fields.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registryVersion Number
- The registry version of the object.
- timeCreated String
- The date and time the application was created, in the timestamp format defined by RFC3339.
- timeUpdated String
- The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
- updatedBy String
- The user that updated the object.
- updatedBy StringName 
- The user that updated the object.
GetWorkspaceApplicationsApplicationSummaryCollectionItemMetadataAggregator        
- Description string
- The description of the aggregator.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- Type string
- The type of the object in patch.
- Description string
- The description of the aggregator.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- Type string
- The type of the object in patch.
- description String
- The description of the aggregator.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- type String
- The type of the object in patch.
- description string
- The description of the aggregator.
- identifier string
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- type string
- The type of the object in patch.
- description str
- The description of the aggregator.
- identifier str
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- type str
- The type of the object in patch.
- description String
- The description of the aggregator.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- type String
- The type of the object in patch.
GetWorkspaceApplicationsApplicationSummaryCollectionItemMetadataCountStatistic         
- objectType List<Property Map>Count Lists 
- The array of statistics.
GetWorkspaceApplicationsApplicationSummaryCollectionItemMetadataCountStatisticObjectTypeCountList             
- 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.
GetWorkspaceApplicationsApplicationSummaryCollectionItemParentRef        
- parent str
- Key of the parent object.
- root_doc_ strid 
- Key of the root document object.
GetWorkspaceApplicationsApplicationSummaryCollectionItemPublishedObjectMetadata         
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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.
GetWorkspaceApplicationsApplicationSummaryCollectionItemRegistryMetadata        
- AggregatorKey string
- The owning object key for this object.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Key string
- The key of the object.
- 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.
- AggregatorKey string
- The owning object key for this object.
- IsFavorite bool
- Specifies whether this object is a favorite or not.
- Key string
- The key of the object.
- 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.
- aggregatorKey String
- The owning object key for this object.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- key String
- The key of the object.
- 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.
- aggregatorKey string
- The owning object key for this object.
- isFavorite boolean
- Specifies whether this object is a favorite or not.
- key string
- The key of the object.
- 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.
- aggregator_key str
- The owning object key for this object.
- is_favorite bool
- Specifies whether this object is a favorite or not.
- key str
- The key of the object.
- 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.
- aggregatorKey String
- The owning object key for this object.
- isFavorite Boolean
- Specifies whether this object is a favorite or not.
- key String
- The key of the object.
- 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.
GetWorkspaceApplicationsApplicationSummaryCollectionItemSourceApplicationInfo         
- ApplicationKey string
- The source application key to use when creating the application.
- ApplicationVersion string
- The source application version of the application.
- CopyType string
- LastPatch stringKey 
- The last patch key for the application.
- WorkspaceId string
- The workspace ID.
- ApplicationKey string
- The source application key to use when creating the application.
- ApplicationVersion string
- The source application version of the application.
- CopyType string
- LastPatch stringKey 
- The last patch key for the application.
- WorkspaceId string
- The workspace ID.
- applicationKey String
- The source application key to use when creating the application.
- applicationVersion String
- The source application version of the application.
- copyType String
- lastPatch StringKey 
- The last patch key for the application.
- workspaceId String
- The workspace ID.
- applicationKey string
- The source application key to use when creating the application.
- applicationVersion string
- The source application version of the application.
- copyType string
- lastPatch stringKey 
- The last patch key for the application.
- workspaceId string
- The workspace ID.
- application_key str
- The source application key to use when creating the application.
- application_version str
- The source application version of the application.
- copy_type str
- last_patch_ strkey 
- The last patch key for the application.
- workspace_id str
- The workspace ID.
- applicationKey String
- The source application key to use when creating the application.
- applicationVersion String
- The source application version of the application.
- copyType String
- lastPatch StringKey 
- The last patch key for the application.
- workspaceId String
- The workspace ID.
GetWorkspaceApplicationsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.