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

oci.DataIntegration.getWorkspaceTasks

Explore with Pulumi AI

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

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

    Retrieves a list of all tasks in a specified project or folder.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceTasks = oci.DataIntegration.getWorkspaceTasks({
        workspaceId: testWorkspace.id,
        fields: workspaceTaskFields,
        folderId: testFolder.id,
        identifiers: workspaceTaskIdentifier,
        keys: workspaceTaskKey,
        name: workspaceTaskName,
        types: workspaceTaskType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_tasks = oci.DataIntegration.get_workspace_tasks(workspace_id=test_workspace["id"],
        fields=workspace_task_fields,
        folder_id=test_folder["id"],
        identifiers=workspace_task_identifier,
        keys=workspace_task_key,
        name=workspace_task_name,
        types=workspace_task_type)
    
    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.GetWorkspaceTasks(ctx, &dataintegration.GetWorkspaceTasksArgs{
    			WorkspaceId: testWorkspace.Id,
    			Fields:      workspaceTaskFields,
    			FolderId:    pulumi.StringRef(testFolder.Id),
    			Identifiers: workspaceTaskIdentifier,
    			Keys:        workspaceTaskKey,
    			Name:        pulumi.StringRef(workspaceTaskName),
    			Types:       workspaceTaskType,
    		}, 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 testWorkspaceTasks = Oci.DataIntegration.GetWorkspaceTasks.Invoke(new()
        {
            WorkspaceId = testWorkspace.Id,
            Fields = workspaceTaskFields,
            FolderId = testFolder.Id,
            Identifiers = workspaceTaskIdentifier,
            Keys = workspaceTaskKey,
            Name = workspaceTaskName,
            Types = workspaceTaskType,
        });
    
    });
    
    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.GetWorkspaceTasksArgs;
    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 testWorkspaceTasks = DataIntegrationFunctions.getWorkspaceTasks(GetWorkspaceTasksArgs.builder()
                .workspaceId(testWorkspace.id())
                .fields(workspaceTaskFields)
                .folderId(testFolder.id())
                .identifiers(workspaceTaskIdentifier)
                .keys(workspaceTaskKey)
                .name(workspaceTaskName)
                .types(workspaceTaskType)
                .build());
    
        }
    }
    
    variables:
      testWorkspaceTasks:
        fn::invoke:
          Function: oci:DataIntegration:getWorkspaceTasks
          Arguments:
            workspaceId: ${testWorkspace.id}
            fields: ${workspaceTaskFields}
            folderId: ${testFolder.id}
            identifiers: ${workspaceTaskIdentifier}
            keys: ${workspaceTaskKey}
            name: ${workspaceTaskName}
            types: ${workspaceTaskType}
    

    Using getWorkspaceTasks

    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 getWorkspaceTasks(args: GetWorkspaceTasksArgs, opts?: InvokeOptions): Promise<GetWorkspaceTasksResult>
    function getWorkspaceTasksOutput(args: GetWorkspaceTasksOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceTasksResult>
    def get_workspace_tasks(fields: Optional[Sequence[str]] = None,
                            filters: Optional[Sequence[_dataintegration.GetWorkspaceTasksFilter]] = None,
                            folder_id: Optional[str] = None,
                            identifiers: Optional[Sequence[str]] = None,
                            keys: Optional[Sequence[str]] = None,
                            name: Optional[str] = None,
                            types: Optional[Sequence[str]] = None,
                            workspace_id: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetWorkspaceTasksResult
    def get_workspace_tasks_output(fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceTasksFilterArgs]]]] = None,
                            folder_id: Optional[pulumi.Input[str]] = None,
                            identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            workspace_id: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceTasksResult]
    func GetWorkspaceTasks(ctx *Context, args *GetWorkspaceTasksArgs, opts ...InvokeOption) (*GetWorkspaceTasksResult, error)
    func GetWorkspaceTasksOutput(ctx *Context, args *GetWorkspaceTasksOutputArgs, opts ...InvokeOption) GetWorkspaceTasksResultOutput

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

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

    The following arguments are supported:

    WorkspaceId string
    The workspace ID.
    Fields List<string>
    Specifies the fields to get for an object.
    Filters List<GetWorkspaceTasksFilter>
    FolderId string
    Unique key of the folder.
    Identifiers List<string>
    Used to filter by the identifier of the object.
    Keys List<string>
    Used to filter by the key of the object.
    Name string
    Used to filter by the name of the object.
    Types List<string>
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    WorkspaceId string
    The workspace ID.
    Fields []string
    Specifies the fields to get for an object.
    Filters []GetWorkspaceTasksFilter
    FolderId string
    Unique key of the folder.
    Identifiers []string
    Used to filter by the identifier of the object.
    Keys []string
    Used to filter by the key of the object.
    Name string
    Used to filter by the name of the object.
    Types []string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    workspaceId String
    The workspace ID.
    fields List<String>
    Specifies the fields to get for an object.
    filters List<GetWorkspaceTasksFilter>
    folderId String
    Unique key of the folder.
    identifiers List<String>
    Used to filter by the identifier of the object.
    keys List<String>
    Used to filter by the key of the object.
    name String
    Used to filter by the name of the object.
    types List<String>
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    workspaceId string
    The workspace ID.
    fields string[]
    Specifies the fields to get for an object.
    filters GetWorkspaceTasksFilter[]
    folderId string
    Unique key of the folder.
    identifiers string[]
    Used to filter by the identifier of the object.
    keys string[]
    Used to filter by the key of the object.
    name string
    Used to filter by the name of the object.
    types string[]
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    workspace_id str
    The workspace ID.
    fields Sequence[str]
    Specifies the fields to get for an object.
    filters Sequence[dataintegration.GetWorkspaceTasksFilter]
    folder_id str
    Unique key of the folder.
    identifiers Sequence[str]
    Used to filter by the identifier of the object.
    keys Sequence[str]
    Used to filter by the key of the object.
    name str
    Used to filter by the name of the object.
    types Sequence[str]
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    workspaceId String
    The workspace ID.
    fields List<String>
    Specifies the fields to get for an object.
    filters List<Property Map>
    folderId String
    Unique key of the folder.
    identifiers List<String>
    Used to filter by the identifier of the object.
    keys List<String>
    Used to filter by the key of the object.
    name String
    Used to filter by the name of the object.
    types List<String>
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task

    getWorkspaceTasks Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskSummaryCollections List<GetWorkspaceTasksTaskSummaryCollection>
    The list of task_summary_collection.
    WorkspaceId string
    Fields List<string>
    An array of fields.
    Filters List<GetWorkspaceTasksFilter>
    FolderId string
    Identifiers List<string>
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Keys List<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.
    Types List<string>
    The object type.
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskSummaryCollections []GetWorkspaceTasksTaskSummaryCollection
    The list of task_summary_collection.
    WorkspaceId string
    Fields []string
    An array of fields.
    Filters []GetWorkspaceTasksFilter
    FolderId string
    Identifiers []string
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Keys []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.
    Types []string
    The object type.
    id String
    The provider-assigned unique ID for this managed resource.
    taskSummaryCollections List<GetWorkspaceTasksTaskSummaryCollection>
    The list of task_summary_collection.
    workspaceId String
    fields List<String>
    An array of fields.
    filters List<GetWorkspaceTasksFilter>
    folderId String
    identifiers List<String>
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    keys List<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.
    types List<String>
    The object type.
    id string
    The provider-assigned unique ID for this managed resource.
    taskSummaryCollections GetWorkspaceTasksTaskSummaryCollection[]
    The list of task_summary_collection.
    workspaceId string
    fields string[]
    An array of fields.
    filters GetWorkspaceTasksFilter[]
    folderId string
    identifiers string[]
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    keys 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.
    types string[]
    The object type.
    id str
    The provider-assigned unique ID for this managed resource.
    task_summary_collections Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollection]
    The list of task_summary_collection.
    workspace_id str
    fields Sequence[str]
    An array of fields.
    filters Sequence[dataintegration.GetWorkspaceTasksFilter]
    folder_id str
    identifiers Sequence[str]
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    keys Sequence[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.
    types Sequence[str]
    The object type.
    id String
    The provider-assigned unique ID for this managed resource.
    taskSummaryCollections List<Property Map>
    The list of task_summary_collection.
    workspaceId String
    fields List<String>
    An array of fields.
    filters List<Property Map>
    folderId String
    identifiers List<String>
    Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    keys List<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.
    types List<String>
    The object type.

    Supporting Types

    GetWorkspaceTasksFilter

    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

    GetWorkspaceTasksTaskSummaryCollection

    GetWorkspaceTasksTaskSummaryCollectionItem

    ApiCallMode string
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    AuthConfig GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig
    Authentication configuration for Generic REST invocation.
    CancelRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig
    The REST API configuration for cancelling the task.
    ConfigProviderDelegate GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate
    The information about the configuration provider.
    Description string
    Detailed description for the object.
    ExecuteRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig
    The REST API configuration for execution.
    Identifier string
    Used to filter by the identifier of the object.
    InputPorts List<GetWorkspaceTasksTaskSummaryCollectionItemInputPort>
    An array of input ports.
    IsSingleLoad bool
    Defines whether Data Loader task is used for single load or multiple
    Key string
    Used to filter by 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<GetWorkspaceTasksTaskSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    OpConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues
    Configuration values can be string, objects, or parameters.
    Operation string
    Describes the shape of the execution result
    OutputPorts List<GetWorkspaceTasksTaskSummaryCollectionItemOutputPort>
    An array of output ports.
    ParallelLoadLimit int
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    Parameters List<GetWorkspaceTasksTaskSummaryCollectionItemParameter>
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemParentRef
    A reference to the object's parent.
    PollRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig
    The REST API configuration for polling.
    RegistryMetadata GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata
    Information about the object and its parent.
    TypedExpressions List<GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression>
    List of typed expressions.
    WorkspaceId string
    The workspace ID.
    ApiCallMode string
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    AuthConfig GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig
    Authentication configuration for Generic REST invocation.
    CancelRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig
    The REST API configuration for cancelling the task.
    ConfigProviderDelegate GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate
    The information about the configuration provider.
    Description string
    Detailed description for the object.
    ExecuteRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig
    The REST API configuration for execution.
    Identifier string
    Used to filter by the identifier of the object.
    InputPorts []GetWorkspaceTasksTaskSummaryCollectionItemInputPort
    An array of input ports.
    IsSingleLoad bool
    Defines whether Data Loader task is used for single load or multiple
    Key string
    Used to filter by 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 []GetWorkspaceTasksTaskSummaryCollectionItemMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    OpConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues
    Configuration values can be string, objects, or parameters.
    Operation string
    Describes the shape of the execution result
    OutputPorts []GetWorkspaceTasksTaskSummaryCollectionItemOutputPort
    An array of output ports.
    ParallelLoadLimit int
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    Parameters []GetWorkspaceTasksTaskSummaryCollectionItemParameter
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemParentRef
    A reference to the object's parent.
    PollRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig
    The REST API configuration for polling.
    RegistryMetadata GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata
    Information about the object and its parent.
    TypedExpressions []GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression
    List of typed expressions.
    WorkspaceId string
    The workspace ID.
    apiCallMode String
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    authConfig GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig
    Authentication configuration for Generic REST invocation.
    cancelRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig
    The REST API configuration for cancelling the task.
    configProviderDelegate GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate
    The information about the configuration provider.
    description String
    Detailed description for the object.
    executeRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig
    The REST API configuration for execution.
    identifier String
    Used to filter by the identifier of the object.
    inputPorts List<GetWorkspaceTasksTaskSummaryCollectionItemInputPort>
    An array of input ports.
    isSingleLoad Boolean
    Defines whether Data Loader task is used for single load or multiple
    key String
    Used to filter by 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<GetWorkspaceTasksTaskSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    opConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues
    Configuration values can be string, objects, or parameters.
    operation String
    Describes the shape of the execution result
    outputPorts List<GetWorkspaceTasksTaskSummaryCollectionItemOutputPort>
    An array of output ports.
    parallelLoadLimit Integer
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    parameters List<GetWorkspaceTasksTaskSummaryCollectionItemParameter>
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemParentRef
    A reference to the object's parent.
    pollRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig
    The REST API configuration for polling.
    registryMetadata GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata
    Information about the object and its parent.
    typedExpressions List<GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression>
    List of typed expressions.
    workspaceId String
    The workspace ID.
    apiCallMode string
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    authConfig GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig
    Authentication configuration for Generic REST invocation.
    cancelRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig
    The REST API configuration for cancelling the task.
    configProviderDelegate GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate
    The information about the configuration provider.
    description string
    Detailed description for the object.
    executeRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig
    The REST API configuration for execution.
    identifier string
    Used to filter by the identifier of the object.
    inputPorts GetWorkspaceTasksTaskSummaryCollectionItemInputPort[]
    An array of input ports.
    isSingleLoad boolean
    Defines whether Data Loader task is used for single load or multiple
    key string
    Used to filter by 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 GetWorkspaceTasksTaskSummaryCollectionItemMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    opConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues
    Configuration values can be string, objects, or parameters.
    operation string
    Describes the shape of the execution result
    outputPorts GetWorkspaceTasksTaskSummaryCollectionItemOutputPort[]
    An array of output ports.
    parallelLoadLimit number
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    parameters GetWorkspaceTasksTaskSummaryCollectionItemParameter[]
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemParentRef
    A reference to the object's parent.
    pollRestCallConfig GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig
    The REST API configuration for polling.
    registryMetadata GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata
    Information about the object and its parent.
    typedExpressions GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression[]
    List of typed expressions.
    workspaceId string
    The workspace ID.
    api_call_mode str
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    auth_config dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig
    Authentication configuration for Generic REST invocation.
    cancel_rest_call_config dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig
    The REST API configuration for cancelling the task.
    config_provider_delegate dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate
    The information about the configuration provider.
    description str
    Detailed description for the object.
    execute_rest_call_config dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig
    The REST API configuration for execution.
    identifier str
    Used to filter by the identifier of the object.
    input_ports Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemInputPort]
    An array of input ports.
    is_single_load bool
    Defines whether Data Loader task is used for single load or multiple
    key str
    Used to filter by 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.GetWorkspaceTasksTaskSummaryCollectionItemMetadata]
    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 types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    op_config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues
    Configuration values can be string, objects, or parameters.
    operation str
    Describes the shape of the execution result
    output_ports Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOutputPort]
    An array of output ports.
    parallel_load_limit int
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    parameters Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParameter]
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParentRef
    A reference to the object's parent.
    poll_rest_call_config dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig
    The REST API configuration for polling.
    registry_metadata dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata
    Information about the object and its parent.
    typed_expressions Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression]
    List of typed expressions.
    workspace_id str
    The workspace ID.
    apiCallMode String
    The REST invocation pattern to use. ASYNC_OCI_WORKREQUEST is being deprecated as well as cancelEndpoint/MethodType.
    authConfig Property Map
    Authentication configuration for Generic REST invocation.
    cancelRestCallConfig Property Map
    The REST API configuration for cancelling the task.
    configProviderDelegate Property Map
    The information about the configuration provider.
    description String
    Detailed description for the object.
    executeRestCallConfig Property Map
    The REST API configuration for execution.
    identifier String
    Used to filter by the identifier of the object.
    inputPorts List<Property Map>
    An array of input ports.
    isSingleLoad Boolean
    Defines whether Data Loader task is used for single load or multiple
    key String
    Used to filter by 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 type of the types 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
    This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    opConfigValues Property Map
    Configuration values can be string, objects, or parameters.
    operation String
    Describes the shape of the execution result
    outputPorts List<Property Map>
    An array of output ports.
    parallelLoadLimit Number
    Defines the number of entities being loaded in parallel at a time for a Data Loader task
    parameters List<Property Map>
    A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
    parentRef Property Map
    A reference to the object's parent.
    pollRestCallConfig Property Map
    The REST API configuration for polling.
    registryMetadata Property Map
    Information about the object and its parent.
    typedExpressions List<Property Map>
    List of typed expressions.
    workspaceId String
    The workspace ID.

    GetWorkspaceTasksTaskSummaryCollectionItemAuthConfig

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef
    A reference to the object's parent.
    ResourcePrincipalSource string
    The Oracle Cloud Infrastructure resource type that will supply the authentication token
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef
    A reference to the object's parent.
    ResourcePrincipalSource string
    The Oracle Cloud Infrastructure resource type that will supply the authentication token
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef
    A reference to the object's parent.
    resourcePrincipalSource String
    The Oracle Cloud Infrastructure resource type that will supply the authentication token
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    modelVersion string
    The model version of an object.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef
    A reference to the object's parent.
    resourcePrincipalSource string
    The Oracle Cloud Infrastructure resource type that will supply the authentication token
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    model_version str
    The model version of an object.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef
    A reference to the object's parent.
    resource_principal_source str
    The Oracle Cloud Infrastructure resource type that will supply the authentication token
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    parentRef Property Map
    A reference to the object's parent.
    resourcePrincipalSource String
    The Oracle Cloud Infrastructure resource type that will supply the authentication token

    GetWorkspaceTasksTaskSummaryCollectionItemAuthConfigParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfig

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders Dictionary<string, object>
    The headers for the REST call.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders map[string]interface{}
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<String,Object>
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    methodType string
    The REST method to use.
    modelType string
    The type of the types object.
    requestHeaders {[key: string]: any}
    The headers for the REST call.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    method_type str
    The REST method to use.
    model_type str
    The type of the types object.
    request_headers Mapping[str, Any]
    The headers for the REST call.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<Any>
    The headers for the REST call.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayload

    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValue

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues

    configParamValues Property Map
    The configuration parameter values.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValuesDataParam

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesConfigParamValuesRequestUrl

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemCancelRestCallConfigConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegate

    GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegateBinding

    key String
    Used to filter by the key of the object.
    parameterValues Property Map

    GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegateBindingParameterValues

    rootObjectValue Property Map
    The root object value, used in custom parameters.
    simpleValue String

    GetWorkspaceTasksTaskSummaryCollectionItemConfigProviderDelegateBindingParameterValuesRootObjectValue

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Integer
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    modelVersion string
    The model version of an object.
    objectStatus number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    model_version str
    The model version of an object.
    object_status int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfig

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders Dictionary<string, object>
    The headers for the REST call.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders map[string]interface{}
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<String,Object>
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    methodType string
    The REST method to use.
    modelType string
    The type of the types object.
    requestHeaders {[key: string]: any}
    The headers for the REST call.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    method_type str
    The REST method to use.
    model_type str
    The type of the types object.
    request_headers Mapping[str, Any]
    The headers for the REST call.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<Any>
    The headers for the REST call.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayload

    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValue

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues

    configParamValues Property Map
    The configuration parameter values.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValuesDataParam

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesConfigParamValuesRequestUrl

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemExecuteRestCallConfigConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemInputPort

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Fields List<string>
    Specifies the fields to get for an object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef
    A reference to the object's parent.
    PortType string
    The port details for the data asset.Type.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Fields []string
    Specifies the fields to get for an object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef
    A reference to the object's parent.
    PortType string
    The port details for the data asset.Type.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    fields List<String>
    Specifies the fields to get for an object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef
    A reference to the object's parent.
    portType String
    The port details for the data asset.Type.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description string
    Detailed description for the object.
    fields string[]
    Specifies the fields to get for an object.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef
    A reference to the object's parent.
    portType string
    The port details for the data asset.Type.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description str
    Detailed description for the object.
    fields Sequence[str]
    Specifies the fields to get for an object.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef
    A reference to the object's parent.
    port_type str
    The port details for the data asset.Type.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    fields List<String>
    Specifies the fields to get for an object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef Property Map
    A reference to the object's parent.
    portType String
    The port details for the data asset.Type.

    GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValuesConfigParamValues

    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue string
    The root object reference value.
    RootObjectValue string
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue string
    The root object reference value.
    RootObjectValue string
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    intValue Integer
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue String
    The root object reference value.
    rootObjectValue String
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.
    intValue number
    An integer value of the parameter.
    objectValue string
    An object value of the parameter.
    parameterValue string
    Reference to the parameter by its key.
    refValue string
    The root object reference value.
    rootObjectValue string
    The root object value, used in custom parameters.
    stringValue string
    A string value of the parameter.
    int_value int
    An integer value of the parameter.
    object_value str
    An object value of the parameter.
    parameter_value str
    Reference to the parameter by its key.
    ref_value str
    The root object reference value.
    root_object_value str
    The root object value, used in custom parameters.
    string_value str
    A string value of the parameter.
    intValue Number
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue String
    The root object reference value.
    rootObjectValue String
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemInputPortConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemInputPortParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemMetadata

    AggregatorKey string
    The owning object's key for this object.
    Aggregators List<GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic>
    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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version.
    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's key for this object.
    Aggregators []GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic
    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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version.
    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's key for this object.
    aggregators List<GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic>
    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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    The registry version.
    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's key for this object.
    aggregators GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic[]
    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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    The registry version.
    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's key for this object.
    aggregators Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic]
    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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    The registry version.
    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's 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 labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    The registry version.
    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.

    GetWorkspaceTasksTaskSummaryCollectionItemMetadataAggregator

    Description string
    Detailed description for the object.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    Used to filter by the key of the object.
    Name string
    Used to filter by the name of the object.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    Description string
    Detailed description for the object.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    Used to filter by the key of the object.
    Name string
    Used to filter by the name of the object.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    description String
    Detailed description for the object.
    identifier String
    Used to filter by the identifier of the object.
    key String
    Used to filter by the key of the object.
    name String
    Used to filter by the name of the object.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    description string
    Detailed description for the object.
    identifier string
    Used to filter by the identifier of the object.
    key string
    Used to filter by the key of the object.
    name string
    Used to filter by the name of the object.
    type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    description str
    Detailed description for the object.
    identifier str
    Used to filter by the identifier of the object.
    key str
    Used to filter by the key of the object.
    name str
    Used to filter by the name of the object.
    type str
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    description String
    Detailed description for the object.
    identifier String
    Used to filter by the identifier of the object.
    key String
    Used to filter by the key of the object.
    name String
    Used to filter by the name of the object.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task

    GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatistic

    GetWorkspaceTasksTaskSummaryCollectionItemMetadataCountStatisticObjectTypeCountList

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValues

    configParamValue Property Map
    key String
    Used to filter by the key of the object.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValue

    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    RootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    RootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    intValue Integer
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    rootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.
    intValue number
    An integer value of the parameter.
    objectValue string
    An object value of the parameter.
    parameterValue string
    Reference to the parameter by its key.
    refValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    rootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    stringValue string
    A string value of the parameter.
    int_value int
    An integer value of the parameter.
    object_value str
    An object value of the parameter.
    parameter_value str
    Reference to the parameter by its key.
    ref_value dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    root_object_value dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    string_value str
    A string value of the parameter.
    intValue Number
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.
    rootObjectValue Property Map
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRefValue

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesConfigParamValuesConfigParamValueRootObjectValue

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Integer
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    modelVersion string
    The model version of an object.
    objectStatus number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    model_version str
    The model version of an object.
    object_status int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.

    GetWorkspaceTasksTaskSummaryCollectionItemOpConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemOutputPort

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Fields List<string>
    Specifies the fields to get for an object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef
    A reference to the object's parent.
    PortType string
    The port details for the data asset.Type.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Fields []string
    Specifies the fields to get for an object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef
    A reference to the object's parent.
    PortType string
    The port details for the data asset.Type.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    fields List<String>
    Specifies the fields to get for an object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef
    A reference to the object's parent.
    portType String
    The port details for the data asset.Type.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description string
    Detailed description for the object.
    fields string[]
    Specifies the fields to get for an object.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef
    A reference to the object's parent.
    portType string
    The port details for the data asset.Type.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues
    Configuration values can be string, objects, or parameters.
    description str
    Detailed description for the object.
    fields Sequence[str]
    Specifies the fields to get for an object.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef
    A reference to the object's parent.
    port_type str
    The port details for the data asset.Type.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    fields List<String>
    Specifies the fields to get for an object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef Property Map
    A reference to the object's parent.
    portType String
    The port details for the data asset.Type.

    GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValuesConfigParamValues

    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue string
    The root object reference value.
    RootObjectValue string
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue string
    The root object reference value.
    RootObjectValue string
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    intValue Integer
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue String
    The root object reference value.
    rootObjectValue String
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.
    intValue number
    An integer value of the parameter.
    objectValue string
    An object value of the parameter.
    parameterValue string
    Reference to the parameter by its key.
    refValue string
    The root object reference value.
    rootObjectValue string
    The root object value, used in custom parameters.
    stringValue string
    A string value of the parameter.
    int_value int
    An integer value of the parameter.
    object_value str
    An object value of the parameter.
    parameter_value str
    Reference to the parameter by its key.
    ref_value str
    The root object reference value.
    root_object_value str
    The root object value, used in custom parameters.
    string_value str
    A string value of the parameter.
    intValue Number
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue String
    The root object reference value.
    rootObjectValue String
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemOutputPortConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemOutputPortParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemParameter

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues
    Configuration values can be string, objects, or parameters.
    DefaultValue string
    A default value for the vairable.
    Description string
    Detailed description for the object.
    IsInput bool
    Specifies whether the parameter is input value.
    IsOutput bool
    Specifies whether the parameter is output value.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    OutputAggregationType string
    The output aggregation type.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef
    A reference to the object's parent.
    RootObjectDefaultValue string
    A base class for all model types, including First Class and its contained objects.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    TypeName string
    The type of value the parameter was created for.
    UsedFor string
    The param name for which parameter is created for for eg. driver Shape, Operation etc.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues
    Configuration values can be string, objects, or parameters.
    DefaultValue string
    A default value for the vairable.
    Description string
    Detailed description for the object.
    IsInput bool
    Specifies whether the parameter is input value.
    IsOutput bool
    Specifies whether the parameter is output value.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    OutputAggregationType string
    The output aggregation type.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef
    A reference to the object's parent.
    RootObjectDefaultValue string
    A base class for all model types, including First Class and its contained objects.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    TypeName string
    The type of value the parameter was created for.
    UsedFor string
    The param name for which parameter is created for for eg. driver Shape, Operation etc.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues
    Configuration values can be string, objects, or parameters.
    defaultValue String
    A default value for the vairable.
    description String
    Detailed description for the object.
    isInput Boolean
    Specifies whether the parameter is input value.
    isOutput Boolean
    Specifies whether the parameter is output value.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    outputAggregationType String
    The output aggregation type.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef
    A reference to the object's parent.
    rootObjectDefaultValue String
    A base class for all model types, including First Class and its contained objects.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    typeName String
    The type of value the parameter was created for.
    usedFor String
    The param name for which parameter is created for for eg. driver Shape, Operation etc.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues
    Configuration values can be string, objects, or parameters.
    defaultValue string
    A default value for the vairable.
    description string
    Detailed description for the object.
    isInput boolean
    Specifies whether the parameter is input value.
    isOutput boolean
    Specifies whether the parameter is output value.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    outputAggregationType string
    The output aggregation type.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef
    A reference to the object's parent.
    rootObjectDefaultValue string
    A base class for all model types, including First Class and its contained objects.
    type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    typeName string
    The type of value the parameter was created for.
    usedFor string
    The param name for which parameter is created for for eg. driver Shape, Operation etc.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues
    Configuration values can be string, objects, or parameters.
    default_value str
    A default value for the vairable.
    description str
    Detailed description for the object.
    is_input bool
    Specifies whether the parameter is input value.
    is_output bool
    Specifies whether the parameter is output value.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    output_aggregation_type str
    The output aggregation type.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef
    A reference to the object's parent.
    root_object_default_value str
    A base class for all model types, including First Class and its contained objects.
    type str
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    type_name str
    The type of value the parameter was created for.
    used_for str
    The param name for which parameter is created for for eg. driver Shape, Operation etc.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    defaultValue String
    A default value for the vairable.
    description String
    Detailed description for the object.
    isInput Boolean
    Specifies whether the parameter is input value.
    isOutput Boolean
    Specifies whether the parameter is output value.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    outputAggregationType String
    The output aggregation type.
    parentRef Property Map
    A reference to the object's parent.
    rootObjectDefaultValue String
    A base class for all model types, including First Class and its contained objects.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    typeName String
    The type of value the parameter was created for.
    usedFor String
    The param name for which parameter is created for for eg. driver Shape, Operation etc.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValues

    configParamValue Property Map
    key String
    Used to filter by the key of the object.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValue

    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    RootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    IntValue int
    An integer value of the parameter.
    ObjectValue string
    An object value of the parameter.
    ParameterValue string
    Reference to the parameter by its key.
    RefValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    RootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    StringValue string
    A string value of the parameter.
    intValue Integer
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    rootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.
    intValue number
    An integer value of the parameter.
    objectValue string
    An object value of the parameter.
    parameterValue string
    Reference to the parameter by its key.
    refValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    rootObjectValue GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    stringValue string
    A string value of the parameter.
    int_value int
    An integer value of the parameter.
    object_value str
    An object value of the parameter.
    parameter_value str
    Reference to the parameter by its key.
    ref_value dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue
    The root object reference value.
    root_object_value dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue
    The root object value, used in custom parameters.
    string_value str
    A string value of the parameter.
    intValue Number
    An integer value of the parameter.
    objectValue String
    An object value of the parameter.
    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.
    rootObjectValue Property Map
    The root object value, used in custom parameters.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRefValue

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesConfigParamValuesConfigParamValueRootObjectValue

    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    ModelVersion string
    The model version of an object.
    ObjectStatus int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Integer
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    modelVersion string
    The model version of an object.
    objectStatus number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    model_version str
    The model version of an object.
    object_status int
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    modelVersion String
    The model version of an object.
    objectStatus Number
    The status of an object that can be set to value 1 for shallow references across objects, other values reserved.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemParameterParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfig

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders Dictionary<string, object>
    The headers for the REST call.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    MethodType string
    The REST method to use.
    ModelType string
    The type of the types object.
    RequestHeaders map[string]interface{}
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<String,Object>
    The headers for the REST call.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    methodType string
    The REST method to use.
    modelType string
    The type of the types object.
    requestHeaders {[key: string]: any}
    The headers for the REST call.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    method_type str
    The REST method to use.
    model_type str
    The type of the types object.
    request_headers Mapping[str, Any]
    The headers for the REST call.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    methodType String
    The REST method to use.
    modelType String
    The type of the types object.
    requestHeaders Map<Any>
    The headers for the REST call.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValues

    PollCondition GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition
    PollInterval GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval
    PollIntervalUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit
    PollMaxDuration GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration
    PollMaxDurationUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit
    RequestPayload GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload
    RequestUrl GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl
    PollCondition GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition
    PollInterval GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval
    PollIntervalUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit
    PollMaxDuration GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration
    PollMaxDurationUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit
    RequestPayload GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload
    RequestUrl GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl
    pollCondition GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition
    pollInterval GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval
    pollIntervalUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit
    pollMaxDuration GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration
    pollMaxDurationUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit
    requestPayload GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload
    requestUrl GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl
    pollCondition GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition
    pollInterval GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval
    pollIntervalUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit
    pollMaxDuration GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration
    pollMaxDurationUnit GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit
    requestPayload GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload
    requestUrl GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl
    poll_condition dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition
    poll_interval dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval
    poll_interval_unit dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit
    poll_max_duration dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration
    poll_max_duration_unit dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit
    request_payload dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload
    request_url dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollCondition

    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollConditionRefValue

    ExprString string
    The expression string for the object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    Name string
    Used to filter by the name of the object.
    ExprString string
    The expression string for the object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    Name string
    Used to filter by the name of the object.
    exprString String
    The expression string for the object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    name String
    Used to filter by the name of the object.
    exprString string
    The expression string for the object.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    name string
    Used to filter by the name of the object.
    expr_string str
    The expression string for the object.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    name str
    Used to filter by the name of the object.
    exprString String
    The expression string for the object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    name String
    Used to filter by the name of the object.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollInterval

    ObjectValue double
    An object value of the parameter.
    ObjectValue float64
    An object value of the parameter.
    objectValue Double
    An object value of the parameter.
    objectValue number
    An object value of the parameter.
    object_value float
    An object value of the parameter.
    objectValue Number
    An object value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollIntervalUnit

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDuration

    ObjectValue double
    An object value of the parameter.
    ObjectValue float64
    An object value of the parameter.
    objectValue Double
    An object value of the parameter.
    objectValue number
    An object value of the parameter.
    object_value float
    An object value of the parameter.
    objectValue Number
    An object value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesPollMaxDurationUnit

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayload

    parameterValue String
    Reference to the parameter by its key.
    refValue Property Map
    The root object reference value.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValue

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    Name string
    Used to filter by the name of the object.
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types object.
    Name string
    Used to filter by the name of the object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    name String
    Used to filter by the name of the object.
    configValues GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types object.
    name string
    Used to filter by the name of the object.
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues
    Configuration values can be string, objects, or parameters.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types object.
    name str
    Used to filter by the name of the object.
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types object.
    name String
    Used to filter by the name of the object.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValues

    configParamValues Property Map
    The configuration parameter values.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestPayloadRefValueConfigValuesConfigParamValuesDataParam

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesConfigParamValuesRequestUrl

    StringValue string
    A string value of the parameter.
    StringValue string
    A string value of the parameter.
    stringValue String
    A string value of the parameter.
    stringValue string
    A string value of the parameter.
    string_value str
    A string value of the parameter.
    stringValue String
    A string value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemPollRestCallConfigConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemRegistryMetadata

    AggregatorKey string
    The owning object's key for this object.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Key string
    Used to filter by the key of the object.
    Labels List<string>
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version.
    AggregatorKey string
    The owning object's key for this object.
    IsFavorite bool
    Specifies whether this object is a favorite or not.
    Key string
    Used to filter by the key of the object.
    Labels []string
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    The registry version.
    aggregatorKey String
    The owning object's key for this object.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    key String
    Used to filter by the key of the object.
    labels List<String>
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    The registry version.
    aggregatorKey string
    The owning object's key for this object.
    isFavorite boolean
    Specifies whether this object is a favorite or not.
    key string
    Used to filter by the key of the object.
    labels string[]
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    The registry version.
    aggregator_key str
    The owning object's key for this object.
    is_favorite bool
    Specifies whether this object is a favorite or not.
    key str
    Used to filter by the key of the object.
    labels Sequence[str]
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    The registry version.
    aggregatorKey String
    The owning object's key for this object.
    isFavorite Boolean
    Specifies whether this object is a favorite or not.
    key String
    Used to filter by the key of the object.
    labels List<String>
    Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    The registry version.

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpression

    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Expression string
    The expression string for the object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef
    A reference to the object's parent.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    ConfigValues GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues
    Configuration values can be string, objects, or parameters.
    Description string
    Detailed description for the object.
    Expression string
    The expression string for the object.
    Key string
    Used to filter by the key of the object.
    ModelType string
    The type of the types 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.
    ParentRef GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef
    A reference to the object's parent.
    Type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    configValues GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    expression String
    The expression string for the object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef
    A reference to the object's parent.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    configValues GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues
    Configuration values can be string, objects, or parameters.
    description string
    Detailed description for the object.
    expression string
    The expression string for the object.
    key string
    Used to filter by the key of the object.
    modelType string
    The type of the types 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.
    parentRef GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef
    A reference to the object's parent.
    type string
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    config_values dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues
    Configuration values can be string, objects, or parameters.
    description str
    Detailed description for the object.
    expression str
    The expression string for the object.
    key str
    Used to filter by the key of the object.
    model_type str
    The type of the types 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.
    parent_ref dataintegration.GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef
    A reference to the object's parent.
    type str
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task
    configValues Property Map
    Configuration values can be string, objects, or parameters.
    description String
    Detailed description for the object.
    expression String
    The expression string for the object.
    key String
    Used to filter by the key of the object.
    modelType String
    The type of the types 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.
    parentRef Property Map
    A reference to the object's parent.
    type String
    Used to filter by the object type of the object. It can be suffixed with an optional filter operator InSubtree. If this operator is not specified, then exact match is considered. Examples: ?type=DATA_LOADER_TASK&typeInSubtree=false returns all objects of type data loader task ?type=DATA_LOADER_TASK returns all objects of type data loader task ?type=DATA_LOADER_TASK&typeInSubtree=true returns all objects of type data loader task

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValues

    configParamValues Property Map
    The configuration parameter values.
    parentRef Property Map
    A reference to the object's parent.

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValuesConfigParamValues

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValuesConfigParamValuesLength

    IntValue int
    An integer value of the parameter.
    IntValue int
    An integer value of the parameter.
    intValue Integer
    An integer value of the parameter.
    intValue number
    An integer value of the parameter.
    int_value int
    An integer value of the parameter.
    intValue Number
    An integer value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValuesConfigParamValuesScale

    IntValue int
    An integer value of the parameter.
    IntValue int
    An integer value of the parameter.
    intValue Integer
    An integer value of the parameter.
    intValue number
    An integer value of the parameter.
    int_value int
    An integer value of the parameter.
    intValue Number
    An integer value of the parameter.

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionConfigValuesParentRef

    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.

    GetWorkspaceTasksTaskSummaryCollectionItemTypedExpressionParentRef

    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.

    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