Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.DataIntegration.getWorkspaceFolders
Explore with Pulumi AI
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: testWorkspace.id,
aggregatorKey: workspaceFolderAggregatorKey,
fields: workspaceFolderFields,
identifiers: workspaceFolderIdentifier,
name: workspaceFolderName,
nameContains: workspaceFolderNameContains,
});
import pulumi
import pulumi_oci as oci
test_workspace_folders = oci.DataIntegration.get_workspace_folders(workspace_id=test_workspace["id"],
aggregator_key=workspace_folder_aggregator_key,
fields=workspace_folder_fields,
identifiers=workspace_folder_identifier,
name=workspace_folder_name,
name_contains=workspace_folder_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.GetWorkspaceFolders(ctx, &dataintegration.GetWorkspaceFoldersArgs{
WorkspaceId: testWorkspace.Id,
AggregatorKey: pulumi.StringRef(workspaceFolderAggregatorKey),
Fields: workspaceFolderFields,
Identifiers: workspaceFolderIdentifier,
Name: pulumi.StringRef(workspaceFolderName),
NameContains: pulumi.StringRef(workspaceFolderNameContains),
}, 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 = testWorkspace.Id,
AggregatorKey = workspaceFolderAggregatorKey,
Fields = workspaceFolderFields,
Identifiers = workspaceFolderIdentifier,
Name = workspaceFolderName,
NameContains = workspaceFolderNameContains,
});
});
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(testWorkspace.id())
.aggregatorKey(workspaceFolderAggregatorKey)
.fields(workspaceFolderFields)
.identifiers(workspaceFolderIdentifier)
.name(workspaceFolderName)
.nameContains(workspaceFolderNameContains)
.build());
}
}
variables:
testWorkspaceFolders:
fn::invoke:
Function: oci:DataIntegration:getWorkspaceFolders
Arguments:
workspaceId: ${testWorkspace.id}
aggregatorKey: ${workspaceFolderAggregatorKey}
fields: ${workspaceFolderFields}
identifiers: ${workspaceFolderIdentifier}
name: ${workspaceFolderName}
nameContains: ${workspaceFolderNameContains}
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:
- Workspace
Id string - The workspace ID.
- Aggregator
Key string - Used to filter by the project or the folder object.
- Fields List<string>
- Specifies the fields to get for an object.
- Filters
List<Get
Workspace Folders Filter> - Identifiers List<string>
- Used to filter by the identifier of the object.
- Name string
- Used to filter by the name of the object.
- Name
Contains string - This parameter can be used to filter objects by the names that match partially or fully with the given value.
- Workspace
Id string - The workspace ID.
- Aggregator
Key string - Used to filter by the project or the folder object.
- Fields []string
- Specifies the fields to get for an object.
- Filters
[]Get
Workspace Folders Filter - Identifiers []string
- Used to filter by the identifier of the object.
- Name string
- Used to filter by the name of the object.
- Name
Contains string - This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspace
Id String - The workspace ID.
- aggregator
Key String - Used to filter by the project or the folder object.
- fields List<String>
- Specifies the fields to get for an object.
- filters
List<Get
Workspace Folders Filter> - identifiers List<String>
- Used to filter by the identifier of the object.
- name String
- Used to filter by the name of the object.
- name
Contains String - This parameter can be used to filter objects by the names that match partially or fully with the given value.
- workspace
Id string - The workspace ID.
- aggregator
Key string - Used to filter by the project or the folder object.
- fields string[]
- Specifies the fields to get for an object.
- filters
Get
Workspace Folders Filter[] - identifiers string[]
- Used to filter by the identifier of the object.
- name string
- Used to filter by the name of the object.
- name
Contains 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.
Get Workspace Folders Filter] - 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.
- workspace
Id String - The workspace ID.
- aggregator
Key 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.
- name
Contains 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:
- Folder
Summary List<GetCollections Workspace Folders Folder Summary Collection> - The list of folder_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspace
Id string - Aggregator
Key string - The owning object key for this object.
- Fields List<string>
- Filters
List<Get
Workspace Folders Filter> - 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.
- Name
Contains string
- Folder
Summary []GetCollections Workspace Folders Folder Summary Collection - The list of folder_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Workspace
Id string - Aggregator
Key string - The owning object key for this object.
- Fields []string
- Filters
[]Get
Workspace Folders Filter - 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.
- Name
Contains string
- folder
Summary List<GetCollections Workspace Folders Folder Summary Collection> - The list of folder_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspace
Id String - aggregator
Key String - The owning object key for this object.
- fields List<String>
- filters
List<Get
Workspace Folders Filter> - 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.
- name
Contains String
- folder
Summary GetCollections Workspace Folders Folder Summary Collection[] - The list of folder_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- workspace
Id string - aggregator
Key string - The owning object key for this object.
- fields string[]
- filters
Get
Workspace Folders Filter[] - 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.
- name
Contains string
- folder_
summary_ Sequence[dataintegration.collections Get Workspace Folders Folder Summary Collection] - 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.
Get Workspace Folders Filter] - 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
- folder
Summary List<Property Map>Collections - The list of folder_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- workspace
Id String - aggregator
Key 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.
- name
Contains String
Supporting Types
GetWorkspaceFoldersFilter
GetWorkspaceFoldersFolderSummaryCollection
GetWorkspaceFoldersFolderSummaryCollectionItem
- Category
Name string - The category name.
- Description string
- The description of the aggregator.
- Folder
Key string - Identifier string
- Used to filter by the identifier of the object.
- Key string
- The key of the aggregator object.
- Key
Map Dictionary<string, string> - 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<Get
Workspace Folders Folder Summary Collection Item Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version string - The model version of an object.
- Name string
- 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 List<GetWorkspace Folders Folder Summary Collection Item Parent Ref> - A reference to the object's parent.
- Registry
Metadata GetWorkspace Folders Folder Summary Collection Item Registry Metadata - Workspace
Id string - The workspace ID.
- Category
Name string - The category name.
- Description string
- The description of the aggregator.
- Folder
Key string - Identifier string
- Used to filter by the identifier of the object.
- Key string
- The key of the aggregator object.
- Key
Map map[string]string - A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
[]Get
Workspace Folders Folder Summary Collection Item Metadata - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version string - The model version of an object.
- Name string
- 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 []GetWorkspace Folders Folder Summary Collection Item Parent Ref - A reference to the object's parent.
- Registry
Metadata GetWorkspace Folders Folder Summary Collection Item Registry Metadata - Workspace
Id string - The workspace ID.
- category
Name String - The category name.
- description String
- The description of the aggregator.
- folder
Key String - identifier String
- Used to filter by the identifier of the object.
- key String
- The key of the aggregator object.
- key
Map Map<String,String> - 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<Get
Workspace Folders Folder Summary Collection Item Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- model
Version String - The model version of an object.
- name String
- Used to filter by the name of the object.
- object
Status Integer - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - The version of the object that is used to track changes in the object instance.
- parent
Reves List<GetWorkspace Folders Folder Summary Collection Item Parent Ref> - A reference to the object's parent.
- registry
Metadata GetWorkspace Folders Folder Summary Collection Item Registry Metadata - workspace
Id String - The workspace ID.
- category
Name string - The category name.
- description string
- The description of the aggregator.
- folder
Key string - identifier string
- Used to filter by the identifier of the object.
- key string
- The key of the aggregator object.
- key
Map {[key: string]: string} - A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Get
Workspace Folders Folder Summary Collection Item Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The type of the object.
- model
Version string - The model version of an object.
- name string
- Used to filter by the name of the object.
- object
Status number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - The version of the object that is used to track changes in the object instance.
- parent
Reves GetWorkspace Folders Folder Summary Collection Item Parent Ref[] - A reference to the object's parent.
- registry
Metadata GetWorkspace Folders Folder Summary Collection Item Registry Metadata - workspace
Id 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, str] - 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.
Get Workspace Folders Folder 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 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.Get Workspace Folders Folder Summary Collection Item Parent Ref] - A reference to the object's parent.
- registry_
metadata dataintegration.Get Workspace Folders Folder Summary Collection Item Registry Metadata - workspace_
id str - The workspace ID.
- category
Name String - The category name.
- description String
- The description of the aggregator.
- folder
Key String - identifier String
- Used to filter by the identifier of the object.
- key String
- The key of the aggregator object.
- key
Map Map<String> - 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.
- model
Type String - The type of the object.
- model
Version String - The model version of an object.
- name String
- Used to filter by the name of the object.
- object
Status Number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - The version of the object that is used to track changes in the object instance.
- parent
Reves List<Property Map> - A reference to the object's parent.
- registry
Metadata Property Map - workspace
Id String - The workspace ID.
GetWorkspaceFoldersFolderSummaryCollectionItemMetadata
- Aggregator
Key string - Used to filter by the project or the folder object.
- Aggregators
List<Get
Workspace Folders Folder Summary Collection Item Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<GetWorkspace Folders Folder Summary Collection Item Metadata Count Statistic> - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields Dictionary<string, string> - Information property fields.
- Is
Favorite 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.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- Aggregator
Key string - Used to filter by the project or the folder object.
- Aggregators
[]Get
Workspace Folders Folder Summary Collection Item Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []GetWorkspace Folders Folder Summary Collection Item Metadata Count Statistic - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields map[string]string - Information property fields.
- Is
Favorite 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.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- aggregator
Key String - Used to filter by the project or the folder object.
- aggregators
List<Get
Workspace Folders Folder Summary Collection Item Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<GetWorkspace Folders Folder Summary Collection Item Metadata Count Statistic> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String,String> - Information property fields.
- is
Favorite 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.
- registry
Version Integer - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
- aggregator
Key string - Used to filter by the project or the folder object.
- aggregators
Get
Workspace Folders Folder Summary Collection Item Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics GetWorkspace Folders Folder Summary Collection Item Metadata Count Statistic[] - A count statistics.
- created
By string - The user that created the object.
- created
By stringName - The user that created the object.
- identifier
Path string - The full path to identify this object.
- info
Fields {[key: string]: string} - Information property fields.
- is
Favorite 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.
- registry
Version number - The registry version of the object.
- time
Created string - The date and time that the object was created.
- time
Updated string - The date and time that the object was updated.
- updated
By string - The user that updated the object.
- updated
By stringName - The user that updated the object.
- aggregator_
key str - Used to filter by the project or the folder object.
- aggregators
Sequence[dataintegration.
Get Workspace Folders Folder 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 Folders Folder 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 that the object was created.
- time_
updated str - The date and time that the object was updated.
- updated_
by str - The user that updated the object.
- updated_
by_ strname - The user that updated the object.
- aggregator
Key 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.
- count
Statistics List<Property Map> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String> - Information property fields.
- is
Favorite 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.
- registry
Version Number - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - 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
- object
Type List<Property Map>Count Lists - The array of statistics.
GetWorkspaceFoldersFolderSummaryCollectionItemMetadataCountStatisticObjectTypeCountList
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
- object
Count string - The value for the count statistic object.
- object
Type 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.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
GetWorkspaceFoldersFolderSummaryCollectionItemParentRef
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
GetWorkspaceFoldersFolderSummaryCollectionItemRegistryMetadata
- Aggregator
Key string - Used to filter by the project or the folder object.
- Is
Favorite 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.
- Registry
Version int - The registry version of the object.
- Aggregator
Key string - Used to filter by the project or the folder object.
- Is
Favorite 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.
- Registry
Version int - The registry version of the object.
- aggregator
Key String - Used to filter by the project or the folder object.
- is
Favorite 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.
- registry
Version Integer - The registry version of the object.
- aggregator
Key string - Used to filter by the project or the folder object.
- is
Favorite 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.
- registry
Version 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.
- aggregator
Key String - Used to filter by the project or the folder object.
- is
Favorite 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.
- registry
Version 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.