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

oci.DataIntegration.getWorkspaceApplicationPatch

Explore with Pulumi AI

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

    This data source provides details about a specific Workspace Application Patch resource in Oracle Cloud Infrastructure Data Integration service.

    Retrieves a patch in an application using the specified identifier.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceApplicationPatch = oci.DataIntegration.getWorkspaceApplicationPatch({
        applicationKey: workspaceApplicationPatchApplicationKey,
        patchKey: workspaceApplicationPatchPatchKey,
        workspaceId: testWorkspace.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_application_patch = oci.DataIntegration.get_workspace_application_patch(application_key=workspace_application_patch_application_key,
        patch_key=workspace_application_patch_patch_key,
        workspace_id=test_workspace["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataIntegration"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataIntegration.GetWorkspaceApplicationPatch(ctx, &dataintegration.GetWorkspaceApplicationPatchArgs{
    			ApplicationKey: workspaceApplicationPatchApplicationKey,
    			PatchKey:       workspaceApplicationPatchPatchKey,
    			WorkspaceId:    testWorkspace.Id,
    		}, 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 testWorkspaceApplicationPatch = Oci.DataIntegration.GetWorkspaceApplicationPatch.Invoke(new()
        {
            ApplicationKey = workspaceApplicationPatchApplicationKey,
            PatchKey = workspaceApplicationPatchPatchKey,
            WorkspaceId = testWorkspace.Id,
        });
    
    });
    
    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.GetWorkspaceApplicationPatchArgs;
    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 testWorkspaceApplicationPatch = DataIntegrationFunctions.getWorkspaceApplicationPatch(GetWorkspaceApplicationPatchArgs.builder()
                .applicationKey(workspaceApplicationPatchApplicationKey)
                .patchKey(workspaceApplicationPatchPatchKey)
                .workspaceId(testWorkspace.id())
                .build());
    
        }
    }
    
    variables:
      testWorkspaceApplicationPatch:
        fn::invoke:
          Function: oci:DataIntegration:getWorkspaceApplicationPatch
          Arguments:
            applicationKey: ${workspaceApplicationPatchApplicationKey}
            patchKey: ${workspaceApplicationPatchPatchKey}
            workspaceId: ${testWorkspace.id}
    

    Using getWorkspaceApplicationPatch

    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 getWorkspaceApplicationPatch(args: GetWorkspaceApplicationPatchArgs, opts?: InvokeOptions): Promise<GetWorkspaceApplicationPatchResult>
    function getWorkspaceApplicationPatchOutput(args: GetWorkspaceApplicationPatchOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceApplicationPatchResult>
    def get_workspace_application_patch(application_key: Optional[str] = None,
                                        patch_key: Optional[str] = None,
                                        workspace_id: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetWorkspaceApplicationPatchResult
    def get_workspace_application_patch_output(application_key: Optional[pulumi.Input[str]] = None,
                                        patch_key: Optional[pulumi.Input[str]] = None,
                                        workspace_id: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceApplicationPatchResult]
    func GetWorkspaceApplicationPatch(ctx *Context, args *GetWorkspaceApplicationPatchArgs, opts ...InvokeOption) (*GetWorkspaceApplicationPatchResult, error)
    func GetWorkspaceApplicationPatchOutput(ctx *Context, args *GetWorkspaceApplicationPatchOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationPatchResultOutput

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

    public static class GetWorkspaceApplicationPatch 
    {
        public static Task<GetWorkspaceApplicationPatchResult> InvokeAsync(GetWorkspaceApplicationPatchArgs args, InvokeOptions? opts = null)
        public static Output<GetWorkspaceApplicationPatchResult> Invoke(GetWorkspaceApplicationPatchInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWorkspaceApplicationPatchResult> getWorkspaceApplicationPatch(GetWorkspaceApplicationPatchArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataIntegration/getWorkspaceApplicationPatch:getWorkspaceApplicationPatch
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ApplicationKey string
    The application key.
    PatchKey string
    The patch key.
    WorkspaceId string
    The workspace ID.
    ApplicationKey string
    The application key.
    PatchKey string
    The patch key.
    WorkspaceId string
    The workspace ID.
    applicationKey String
    The application key.
    patchKey String
    The patch key.
    workspaceId String
    The workspace ID.
    applicationKey string
    The application key.
    patchKey string
    The patch key.
    workspaceId string
    The workspace ID.
    application_key str
    The application key.
    patch_key str
    The patch key.
    workspace_id str
    The workspace ID.
    applicationKey String
    The application key.
    patchKey String
    The patch key.
    workspaceId String
    The workspace ID.

    getWorkspaceApplicationPatch Result

    The following output properties are available:

    ApplicationKey string
    ApplicationVersion int
    The application version of the patch.
    DependentObjectMetadatas List<GetWorkspaceApplicationPatchDependentObjectMetadata>
    List of dependent objects in this patch.
    Description string
    The description of the aggregator.
    ErrorMessages Dictionary<string, object>
    The errors encountered while applying the patch, if any.
    Id string
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    KeyMap Dictionary<string, object>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas List<GetWorkspaceApplicationPatchMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The object type.
    ModelVersion string
    The object's model version.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectKeys List<string>
    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<GetWorkspaceApplicationPatchParentRef>
    A reference to the object's parent.
    PatchKey string
    PatchObjectMetadatas List<GetWorkspaceApplicationPatchPatchObjectMetadata>
    List of objects that are published or unpublished in this patch.
    PatchStatus string
    Status of the patch applied or being applied on the application
    PatchType string
    The type of the patch applied or being applied on the application.
    RegistryMetadatas List<GetWorkspaceApplicationPatchRegistryMetadata>
    TimePatched string
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    WorkspaceId string
    ApplicationKey string
    ApplicationVersion int
    The application version of the patch.
    DependentObjectMetadatas []GetWorkspaceApplicationPatchDependentObjectMetadata
    List of dependent objects in this patch.
    Description string
    The description of the aggregator.
    ErrorMessages map[string]interface{}
    The errors encountered while applying the patch, if any.
    Id string
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    KeyMap map[string]interface{}
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas []GetWorkspaceApplicationPatchMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The object type.
    ModelVersion string
    The object's model version.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectKeys []string
    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 []GetWorkspaceApplicationPatchParentRef
    A reference to the object's parent.
    PatchKey string
    PatchObjectMetadatas []GetWorkspaceApplicationPatchPatchObjectMetadata
    List of objects that are published or unpublished in this patch.
    PatchStatus string
    Status of the patch applied or being applied on the application
    PatchType string
    The type of the patch applied or being applied on the application.
    RegistryMetadatas []GetWorkspaceApplicationPatchRegistryMetadata
    TimePatched string
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    WorkspaceId string
    applicationKey String
    applicationVersion Integer
    The application version of the patch.
    dependentObjectMetadatas List<GetWorkspaceApplicationPatchDependentObjectMetadata>
    List of dependent objects in this patch.
    description String
    The description of the aggregator.
    errorMessages Map<String,Object>
    The errors encountered while applying the patch, if any.
    id String
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    keyMap Map<String,Object>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<GetWorkspaceApplicationPatchMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The object type.
    modelVersion String
    The object's model version.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectKeys List<String>
    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<GetWorkspaceApplicationPatchParentRef>
    A reference to the object's parent.
    patchKey String
    patchObjectMetadatas List<GetWorkspaceApplicationPatchPatchObjectMetadata>
    List of objects that are published or unpublished in this patch.
    patchStatus String
    Status of the patch applied or being applied on the application
    patchType String
    The type of the patch applied or being applied on the application.
    registryMetadatas List<GetWorkspaceApplicationPatchRegistryMetadata>
    timePatched String
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    workspaceId String
    applicationKey string
    applicationVersion number
    The application version of the patch.
    dependentObjectMetadatas GetWorkspaceApplicationPatchDependentObjectMetadata[]
    List of dependent objects in this patch.
    description string
    The description of the aggregator.
    errorMessages {[key: string]: any}
    The errors encountered while applying the patch, if any.
    id string
    identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    The key of the object.
    keyMap {[key: string]: any}
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas GetWorkspaceApplicationPatchMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The object type.
    modelVersion string
    The object's model version.
    name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectKeys string[]
    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 GetWorkspaceApplicationPatchParentRef[]
    A reference to the object's parent.
    patchKey string
    patchObjectMetadatas GetWorkspaceApplicationPatchPatchObjectMetadata[]
    List of objects that are published or unpublished in this patch.
    patchStatus string
    Status of the patch applied or being applied on the application
    patchType string
    The type of the patch applied or being applied on the application.
    registryMetadatas GetWorkspaceApplicationPatchRegistryMetadata[]
    timePatched string
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    workspaceId string
    application_key str
    application_version int
    The application version of the patch.
    dependent_object_metadatas Sequence[dataintegration.GetWorkspaceApplicationPatchDependentObjectMetadata]
    List of dependent objects in this patch.
    description str
    The description of the aggregator.
    error_messages Mapping[str, Any]
    The errors encountered while applying the patch, if any.
    id str
    identifier str
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    The key of the object.
    key_map Mapping[str, Any]
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas Sequence[dataintegration.GetWorkspaceApplicationPatchMetadata]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The object type.
    model_version str
    The object's model version.
    name str
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_keys Sequence[str]
    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.GetWorkspaceApplicationPatchParentRef]
    A reference to the object's parent.
    patch_key str
    patch_object_metadatas Sequence[dataintegration.GetWorkspaceApplicationPatchPatchObjectMetadata]
    List of objects that are published or unpublished in this patch.
    patch_status str
    Status of the patch applied or being applied on the application
    patch_type str
    The type of the patch applied or being applied on the application.
    registry_metadatas Sequence[dataintegration.GetWorkspaceApplicationPatchRegistryMetadata]
    time_patched str
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    workspace_id str
    applicationKey String
    applicationVersion Number
    The application version of the patch.
    dependentObjectMetadatas List<Property Map>
    List of dependent objects in this patch.
    description String
    The description of the aggregator.
    errorMessages Map<Any>
    The errors encountered while applying the patch, if any.
    id String
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    keyMap Map<Any>
    A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The object type.
    modelVersion String
    The object's model version.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectKeys List<String>
    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.
    patchKey String
    patchObjectMetadatas List<Property Map>
    List of objects that are published or unpublished in this patch.
    patchStatus String
    Status of the patch applied or being applied on the application
    patchType String
    The type of the patch applied or being applied on the application.
    registryMetadatas List<Property Map>
    timePatched String
    The date and time the patch was applied, in the timestamp format defined by RFC3339.
    workspaceId String

    Supporting Types

    GetWorkspaceApplicationPatchDependentObjectMetadata

    Action string
    The patch action indicating if object was created, updated, or deleted.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    NamePath string
    The fully qualified path of the published object, which would include its project and folder.
    ObjectVersion int
    The object version.
    Type string
    The type of the object in patch.
    Action string
    The patch action indicating if object was created, updated, or deleted.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    NamePath string
    The fully qualified path of the published object, which would include its project and folder.
    ObjectVersion int
    The object version.
    Type string
    The type of the object in patch.
    action String
    The patch action indicating if object was created, updated, or deleted.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath String
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion Integer
    The object version.
    type String
    The type of the object in patch.
    action string
    The patch action indicating if object was created, updated, or deleted.
    identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    The key of the object.
    name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath string
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion number
    The object version.
    type string
    The type of the object in patch.
    action str
    The patch action indicating if object was created, updated, or deleted.
    identifier str
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    The key of the object.
    name str
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    name_path str
    The fully qualified path of the published object, which would include its project and folder.
    object_version int
    The object version.
    type str
    The type of the object in patch.
    action String
    The patch action indicating if object was created, updated, or deleted.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath String
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion Number
    The object version.
    type String
    The type of the object in patch.

    GetWorkspaceApplicationPatchMetadata

    AggregatorKey string
    The owning object key for this object.
    Aggregators List<GetWorkspaceApplicationPatchMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<GetWorkspaceApplicationPatchMetadataCountStatistic>
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields Dictionary<string, object>
    Information property fields.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Labels List<string>
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version of the object.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    AggregatorKey string
    The owning object key for this object.
    Aggregators []GetWorkspaceApplicationPatchMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []GetWorkspaceApplicationPatchMetadataCountStatistic
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields map[string]interface{}
    Information property fields.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Labels []string
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version of the object.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    aggregatorKey String
    The owning object key for this object.
    aggregators List<GetWorkspaceApplicationPatchMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<GetWorkspaceApplicationPatchMetadataCountStatistic>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<String,Object>
    Information property fields.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    labels List<String>
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    registryVersion Integer
    The registry version of the object.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.
    aggregatorKey string
    The owning object key for this object.
    aggregators GetWorkspaceApplicationPatchMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics GetWorkspaceApplicationPatchMetadataCountStatistic[]
    A count statistics.
    createdBy string
    The user that created the object.
    createdByName string
    The user that created the object.
    identifierPath string
    The full path to identify this object.
    infoFields {[key: string]: any}
    Information property fields.
    isFavorite boolean
    Specifies whether this object is a favorite or not.
    labels string[]
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    registryVersion number
    The registry version of the object.
    timeCreated string
    The date and time that the object was created.
    timeUpdated string
    The date and time that the object was updated.
    updatedBy string
    The user that updated the object.
    updatedByName string
    The user that updated the object.
    aggregator_key str
    The owning object key for this object.
    aggregators Sequence[dataintegration.GetWorkspaceApplicationPatchMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.GetWorkspaceApplicationPatchMetadataCountStatistic]
    A count statistics.
    created_by str
    The user that created the object.
    created_by_name str
    The user that created the object.
    identifier_path str
    The full path to identify this object.
    info_fields Mapping[str, Any]
    Information property fields.
    is_favorite bool
    Specifies whether this object is a favorite or not.
    labels Sequence[str]
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    registry_version int
    The registry version of the object.
    time_created str
    The date and time that the object was created.
    time_updated str
    The date and time that the object was updated.
    updated_by str
    The user that updated the object.
    updated_by_name str
    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.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<Any>
    Information property fields.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    labels List<String>
    Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
    registryVersion Number
    The registry version of the object.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.

    GetWorkspaceApplicationPatchMetadataAggregator

    Description string
    The description of the aggregator.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the object in patch.
    Description string
    The description of the aggregator.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the object in patch.
    description String
    The description of the aggregator.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the object in patch.
    description string
    The description of the aggregator.
    identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    The key of the object.
    name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type string
    The type of the object in patch.
    description str
    The description of the aggregator.
    identifier str
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    The key of the object.
    name str
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type str
    The type of the object in patch.
    description String
    The description of the aggregator.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the object in patch.

    GetWorkspaceApplicationPatchMetadataCountStatistic

    GetWorkspaceApplicationPatchMetadataCountStatisticObjectTypeCountList

    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.

    GetWorkspaceApplicationPatchParentRef

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

    GetWorkspaceApplicationPatchPatchObjectMetadata

    Action string
    The patch action indicating if object was created, updated, or deleted.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    NamePath string
    The fully qualified path of the published object, which would include its project and folder.
    ObjectVersion int
    The object version.
    Type string
    The type of the object in patch.
    Action string
    The patch action indicating if object was created, updated, or deleted.
    Identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    The key of the object.
    Name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    NamePath string
    The fully qualified path of the published object, which would include its project and folder.
    ObjectVersion int
    The object version.
    Type string
    The type of the object in patch.
    action String
    The patch action indicating if object was created, updated, or deleted.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath String
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion Integer
    The object version.
    type String
    The type of the object in patch.
    action string
    The patch action indicating if object was created, updated, or deleted.
    identifier string
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    The key of the object.
    name string
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath string
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion number
    The object version.
    type string
    The type of the object in patch.
    action str
    The patch action indicating if object was created, updated, or deleted.
    identifier str
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    The key of the object.
    name str
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    name_path str
    The fully qualified path of the published object, which would include its project and folder.
    object_version int
    The object version.
    type str
    The type of the object in patch.
    action String
    The patch action indicating if object was created, updated, or deleted.
    identifier String
    Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    The key of the object.
    name String
    Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    namePath String
    The fully qualified path of the published object, which would include its project and folder.
    objectVersion Number
    The object version.
    type String
    The type of the object in patch.

    GetWorkspaceApplicationPatchRegistryMetadata

    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.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi