1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. getWorkspaceFolders
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataIntegration.getWorkspaceFolders

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

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

    Retrieves a list of folders in a project and provides options to filter the list.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceFolders = oci.DataIntegration.getWorkspaceFolders({
        workspaceId: oci_dataintegration_workspace.test_workspace.id,
        aggregatorKey: _var.workspace_folder_aggregator_key,
        fields: _var.workspace_folder_fields,
        identifiers: _var.workspace_folder_identifier,
        name: _var.workspace_folder_name,
        nameContains: _var.workspace_folder_name_contains,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_folders = oci.DataIntegration.get_workspace_folders(workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
        aggregator_key=var["workspace_folder_aggregator_key"],
        fields=var["workspace_folder_fields"],
        identifiers=var["workspace_folder_identifier"],
        name=var["workspace_folder_name"],
        name_contains=var["workspace_folder_name_contains"])
    
    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.GetWorkspaceFolders(ctx, &dataintegration.GetWorkspaceFoldersArgs{
    			WorkspaceId:   oci_dataintegration_workspace.Test_workspace.Id,
    			AggregatorKey: pulumi.StringRef(_var.Workspace_folder_aggregator_key),
    			Fields:        _var.Workspace_folder_fields,
    			Identifiers:   _var.Workspace_folder_identifier,
    			Name:          pulumi.StringRef(_var.Workspace_folder_name),
    			NameContains:  pulumi.StringRef(_var.Workspace_folder_name_contains),
    		}, 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 testWorkspaceFolders = Oci.DataIntegration.GetWorkspaceFolders.Invoke(new()
        {
            WorkspaceId = oci_dataintegration_workspace.Test_workspace.Id,
            AggregatorKey = @var.Workspace_folder_aggregator_key,
            Fields = @var.Workspace_folder_fields,
            Identifiers = @var.Workspace_folder_identifier,
            Name = @var.Workspace_folder_name,
            NameContains = @var.Workspace_folder_name_contains,
        });
    
    });
    
    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.GetWorkspaceFoldersArgs;
    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 testWorkspaceFolders = DataIntegrationFunctions.getWorkspaceFolders(GetWorkspaceFoldersArgs.builder()
                .workspaceId(oci_dataintegration_workspace.test_workspace().id())
                .aggregatorKey(var_.workspace_folder_aggregator_key())
                .fields(var_.workspace_folder_fields())
                .identifiers(var_.workspace_folder_identifier())
                .name(var_.workspace_folder_name())
                .nameContains(var_.workspace_folder_name_contains())
                .build());
    
        }
    }
    
    variables:
      testWorkspaceFolders:
        fn::invoke:
          Function: oci:DataIntegration:getWorkspaceFolders
          Arguments:
            workspaceId: ${oci_dataintegration_workspace.test_workspace.id}
            aggregatorKey: ${var.workspace_folder_aggregator_key}
            fields: ${var.workspace_folder_fields}
            identifiers: ${var.workspace_folder_identifier}
            name: ${var.workspace_folder_name}
            nameContains: ${var.workspace_folder_name_contains}
    

    Using getWorkspaceFolders

    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 getWorkspaceFolders(args: GetWorkspaceFoldersArgs, opts?: InvokeOptions): Promise<GetWorkspaceFoldersResult>
    function getWorkspaceFoldersOutput(args: GetWorkspaceFoldersOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceFoldersResult>
    def get_workspace_folders(aggregator_key: Optional[str] = None,
                              fields: Optional[Sequence[str]] = None,
                              filters: Optional[Sequence[_dataintegration.GetWorkspaceFoldersFilter]] = None,
                              identifiers: Optional[Sequence[str]] = None,
                              name: Optional[str] = None,
                              name_contains: Optional[str] = None,
                              workspace_id: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetWorkspaceFoldersResult
    def get_workspace_folders_output(aggregator_key: Optional[pulumi.Input[str]] = None,
                              fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceFoldersFilterArgs]]]] = 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[GetWorkspaceFoldersResult]
    func GetWorkspaceFolders(ctx *Context, args *GetWorkspaceFoldersArgs, opts ...InvokeOption) (*GetWorkspaceFoldersResult, error)
    func GetWorkspaceFoldersOutput(ctx *Context, args *GetWorkspaceFoldersOutputArgs, opts ...InvokeOption) GetWorkspaceFoldersResultOutput

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

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

    The following arguments are supported:

    WorkspaceId string
    The workspace ID.
    AggregatorKey string
    Used to filter by the project or the folder object.
    Fields List<string>
    Specifies the fields to get for an object.
    Filters List<GetWorkspaceFoldersFilter>
    Identifiers List<string>
    Used to filter by the identifier of the 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.
    AggregatorKey string
    Used to filter by the project or the folder object.
    Fields []string
    Specifies the fields to get for an object.
    Filters []GetWorkspaceFoldersFilter
    Identifiers []string
    Used to filter by the identifier of the 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.
    aggregatorKey String
    Used to filter by the project or the folder object.
    fields List<String>
    Specifies the fields to get for an object.
    filters List<GetWorkspaceFoldersFilter>
    identifiers List<String>
    Used to filter by the identifier of the 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.
    aggregatorKey string
    Used to filter by the project or the folder object.
    fields string[]
    Specifies the fields to get for an object.
    filters GetWorkspaceFoldersFilter[]
    identifiers string[]
    Used to filter by the identifier of the 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.
    aggregator_key str
    Used to filter by the project or the folder object.
    fields Sequence[str]
    Specifies the fields to get for an object.
    filters Sequence[dataintegration.GetWorkspaceFoldersFilter]
    identifiers Sequence[str]
    Used to filter by the identifier of the 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.
    aggregatorKey String
    Used to filter by the project or the folder object.
    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 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.

    getWorkspaceFolders Result

    The following output properties are available:

    FolderSummaryCollections List<GetWorkspaceFoldersFolderSummaryCollection>
    The list of folder_summary_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkspaceId string
    AggregatorKey string
    The owning object key for this object.
    Fields List<string>
    Filters List<GetWorkspaceFoldersFilter>
    Identifiers List<string>
    The identifier of the aggregator.
    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
    FolderSummaryCollections []GetWorkspaceFoldersFolderSummaryCollection
    The list of folder_summary_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkspaceId string
    AggregatorKey string
    The owning object key for this object.
    Fields []string
    Filters []GetWorkspaceFoldersFilter
    Identifiers []string
    The identifier of the aggregator.
    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
    folderSummaryCollections List<GetWorkspaceFoldersFolderSummaryCollection>
    The list of folder_summary_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    workspaceId String
    aggregatorKey String
    The owning object key for this object.
    fields List<String>
    filters List<GetWorkspaceFoldersFilter>
    identifiers List<String>
    The identifier of the aggregator.
    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
    folderSummaryCollections GetWorkspaceFoldersFolderSummaryCollection[]
    The list of folder_summary_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    workspaceId string
    aggregatorKey string
    The owning object key for this object.
    fields string[]
    filters GetWorkspaceFoldersFilter[]
    identifiers string[]
    The identifier of the aggregator.
    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
    folder_summary_collections Sequence[dataintegration.GetWorkspaceFoldersFolderSummaryCollection]
    The list of folder_summary_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    workspace_id str
    aggregator_key str
    The owning object key for this object.
    fields Sequence[str]
    filters Sequence[dataintegration.GetWorkspaceFoldersFilter]
    identifiers Sequence[str]
    The identifier of the aggregator.
    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
    folderSummaryCollections List<Property Map>
    The list of folder_summary_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    workspaceId String
    aggregatorKey String
    The owning object key for this object.
    fields List<String>
    filters List<Property Map>
    identifiers List<String>
    The identifier of the aggregator.
    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

    GetWorkspaceFoldersFilter

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

    GetWorkspaceFoldersFolderSummaryCollection

    GetWorkspaceFoldersFolderSummaryCollectionItem

    CategoryName string
    The category name.
    Description string
    The description of the aggregator.
    FolderKey string
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    The key of the aggregator object.
    KeyMap Dictionary<string, object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    ParentReves List<GetWorkspaceFoldersFolderSummaryCollectionItemParentRef>
    A reference to the object's parent.
    RegistryMetadata GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
    WorkspaceId string
    The workspace ID.
    CategoryName string
    The category name.
    Description string
    The description of the aggregator.
    FolderKey string
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    The key of the aggregator object.
    KeyMap map[string]interface{}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    Metadatas []GetWorkspaceFoldersFolderSummaryCollectionItemMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    ParentReves []GetWorkspaceFoldersFolderSummaryCollectionItemParentRef
    A reference to the object's parent.
    RegistryMetadata GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
    WorkspaceId string
    The workspace ID.
    categoryName String
    The category name.
    description String
    The description of the aggregator.
    folderKey String
    identifier String
    Used to filter by the identifier of the object.
    key String
    The key of the aggregator object.
    keyMap Map<String,Object>
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    parentReves List<GetWorkspaceFoldersFolderSummaryCollectionItemParentRef>
    A reference to the object's parent.
    registryMetadata GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
    workspaceId String
    The workspace ID.
    categoryName string
    The category name.
    description string
    The description of the aggregator.
    folderKey string
    identifier string
    Used to filter by the identifier of the object.
    key string
    The key of the aggregator object.
    keyMap {[key: string]: any}
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas GetWorkspaceFoldersFolderSummaryCollectionItemMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the object.
    modelVersion string
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    parentReves GetWorkspaceFoldersFolderSummaryCollectionItemParentRef[]
    A reference to the object's parent.
    registryMetadata GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
    workspaceId string
    The workspace ID.
    category_name str
    The category name.
    description str
    The description of the aggregator.
    folder_key str
    identifier str
    Used to filter by the identifier of the object.
    key str
    The key of the aggregator object.
    key_map Mapping[str, Any]
    A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
    metadatas Sequence[dataintegration.GetWorkspaceFoldersFolderSummaryCollectionItemMetadata]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The type of the object.
    model_version str
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    parent_reves Sequence[dataintegration.GetWorkspaceFoldersFolderSummaryCollectionItemParentRef]
    A reference to the object's parent.
    registry_metadata dataintegration.GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
    workspace_id str
    The workspace ID.
    categoryName String
    The category name.
    description String
    The description of the aggregator.
    folderKey String
    identifier String
    Used to filter by the identifier of the object.
    key String
    The key of the aggregator object.
    keyMap Map<Any>
    A key map. If provided, the 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 type of the object.
    modelVersion String
    The model version of an object.
    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 version of the object that is used to track changes in the object instance.
    parentReves List<Property Map>
    A reference to the object's parent.
    registryMetadata Property Map
    workspaceId String
    The workspace ID.

    GetWorkspaceFoldersFolderSummaryCollectionItemMetadata

    AggregatorKey string
    Used to filter by the project or the folder object.
    Aggregators List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic>
    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
    Used to filter by the project or the folder object.
    Aggregators []GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic
    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
    Used to filter by the project or the folder object.
    aggregators List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic>
    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
    Used to filter by the project or the folder object.
    aggregators GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic[]
    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
    Used to filter by the project or the folder object.
    aggregators Sequence[dataintegration.GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic]
    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
    Used to filter by the project or the folder 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.

    GetWorkspaceFoldersFolderSummaryCollectionItemMetadataAggregator

    Description string
    The description of the aggregator.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    The key of the aggregator object.
    Name string
    Used to filter by the name of the object.
    Type string
    The type of the aggregator.
    Description string
    The description of the aggregator.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    The key of the aggregator object.
    Name string
    Used to filter by the name of the object.
    Type string
    The type of the aggregator.
    description String
    The description of the aggregator.
    identifier String
    Used to filter by the identifier of the object.
    key String
    The key of the aggregator object.
    name String
    Used to filter by the name of the object.
    type String
    The type of the aggregator.
    description string
    The description of the aggregator.
    identifier string
    Used to filter by the identifier of the object.
    key string
    The key of the aggregator object.
    name string
    Used to filter by the name of the object.
    type string
    The type of the aggregator.
    description str
    The description of the aggregator.
    identifier str
    Used to filter by the identifier of the object.
    key str
    The key of the aggregator object.
    name str
    Used to filter by the name of the object.
    type str
    The type of the aggregator.
    description String
    The description of the aggregator.
    identifier String
    Used to filter by the identifier of the object.
    key String
    The key of the aggregator object.
    name String
    Used to filter by the name of the object.
    type String
    The type of the aggregator.

    GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatistic

    GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatisticObjectTypeCountList

    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.

    GetWorkspaceFoldersFolderSummaryCollectionItemParentRef

    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.

    GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata

    AggregatorKey string
    Used to filter by the project or the folder object.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Key string
    The key of the aggregator 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
    Used to filter by the project or the folder object.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Key string
    The key of the aggregator 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
    Used to filter by the project or the folder object.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    key String
    The key of the aggregator 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
    Used to filter by the project or the folder object.
    isFavorite boolean
    Specifies whether this object is a favorite or not.
    key string
    The key of the aggregator 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
    Used to filter by the project or the folder object.
    is_favorite bool
    Specifies whether this object is a favorite or not.
    key str
    The key of the aggregator 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
    Used to filter by the project or the folder object.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    key String
    The key of the aggregator 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.32.0 published on Thursday, Apr 18, 2024 by Pulumi