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

oci.DataIntegration.getWorkspaceApplicationTaskSchedules

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 Application Task Schedules in Oracle Cloud Infrastructure Data Integration service.

    This endpoint can be used to get the list of all the TaskSchedule objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceApplicationTaskSchedules = oci.DataIntegration.getWorkspaceApplicationTaskSchedules({
        applicationKey: workspaceApplicationTaskScheduleApplicationKey,
        workspaceId: testWorkspace.id,
        identifiers: workspaceApplicationTaskScheduleIdentifier,
        isEnabled: workspaceApplicationTaskScheduleIsEnabled,
        keys: workspaceApplicationTaskScheduleKey,
        name: workspaceApplicationTaskScheduleName,
        types: workspaceApplicationTaskScheduleType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_application_task_schedules = oci.DataIntegration.get_workspace_application_task_schedules(application_key=workspace_application_task_schedule_application_key,
        workspace_id=test_workspace["id"],
        identifiers=workspace_application_task_schedule_identifier,
        is_enabled=workspace_application_task_schedule_is_enabled,
        keys=workspace_application_task_schedule_key,
        name=workspace_application_task_schedule_name,
        types=workspace_application_task_schedule_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.GetWorkspaceApplicationTaskSchedules(ctx, &dataintegration.GetWorkspaceApplicationTaskSchedulesArgs{
    			ApplicationKey: workspaceApplicationTaskScheduleApplicationKey,
    			WorkspaceId:    testWorkspace.Id,
    			Identifiers:    workspaceApplicationTaskScheduleIdentifier,
    			IsEnabled:      pulumi.BoolRef(workspaceApplicationTaskScheduleIsEnabled),
    			Keys:           workspaceApplicationTaskScheduleKey,
    			Name:           pulumi.StringRef(workspaceApplicationTaskScheduleName),
    			Types:          workspaceApplicationTaskScheduleType,
    		}, 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 testWorkspaceApplicationTaskSchedules = Oci.DataIntegration.GetWorkspaceApplicationTaskSchedules.Invoke(new()
        {
            ApplicationKey = workspaceApplicationTaskScheduleApplicationKey,
            WorkspaceId = testWorkspace.Id,
            Identifiers = workspaceApplicationTaskScheduleIdentifier,
            IsEnabled = workspaceApplicationTaskScheduleIsEnabled,
            Keys = workspaceApplicationTaskScheduleKey,
            Name = workspaceApplicationTaskScheduleName,
            Types = workspaceApplicationTaskScheduleType,
        });
    
    });
    
    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.GetWorkspaceApplicationTaskSchedulesArgs;
    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 testWorkspaceApplicationTaskSchedules = DataIntegrationFunctions.getWorkspaceApplicationTaskSchedules(GetWorkspaceApplicationTaskSchedulesArgs.builder()
                .applicationKey(workspaceApplicationTaskScheduleApplicationKey)
                .workspaceId(testWorkspace.id())
                .identifiers(workspaceApplicationTaskScheduleIdentifier)
                .isEnabled(workspaceApplicationTaskScheduleIsEnabled)
                .keys(workspaceApplicationTaskScheduleKey)
                .name(workspaceApplicationTaskScheduleName)
                .types(workspaceApplicationTaskScheduleType)
                .build());
    
        }
    }
    
    variables:
      testWorkspaceApplicationTaskSchedules:
        fn::invoke:
          Function: oci:DataIntegration:getWorkspaceApplicationTaskSchedules
          Arguments:
            applicationKey: ${workspaceApplicationTaskScheduleApplicationKey}
            workspaceId: ${testWorkspace.id}
            identifiers: ${workspaceApplicationTaskScheduleIdentifier}
            isEnabled: ${workspaceApplicationTaskScheduleIsEnabled}
            keys: ${workspaceApplicationTaskScheduleKey}
            name: ${workspaceApplicationTaskScheduleName}
            types: ${workspaceApplicationTaskScheduleType}
    

    Using getWorkspaceApplicationTaskSchedules

    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 getWorkspaceApplicationTaskSchedules(args: GetWorkspaceApplicationTaskSchedulesArgs, opts?: InvokeOptions): Promise<GetWorkspaceApplicationTaskSchedulesResult>
    function getWorkspaceApplicationTaskSchedulesOutput(args: GetWorkspaceApplicationTaskSchedulesOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceApplicationTaskSchedulesResult>
    def get_workspace_application_task_schedules(application_key: Optional[str] = None,
                                                 filters: Optional[Sequence[_dataintegration.GetWorkspaceApplicationTaskSchedulesFilter]] = None,
                                                 identifiers: Optional[Sequence[str]] = None,
                                                 is_enabled: Optional[bool] = None,
                                                 keys: Optional[Sequence[str]] = None,
                                                 name: Optional[str] = None,
                                                 types: Optional[Sequence[str]] = None,
                                                 workspace_id: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetWorkspaceApplicationTaskSchedulesResult
    def get_workspace_application_task_schedules_output(application_key: Optional[pulumi.Input[str]] = None,
                                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceApplicationTaskSchedulesFilterArgs]]]] = None,
                                                 identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                 is_enabled: Optional[pulumi.Input[bool]] = 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[GetWorkspaceApplicationTaskSchedulesResult]
    func GetWorkspaceApplicationTaskSchedules(ctx *Context, args *GetWorkspaceApplicationTaskSchedulesArgs, opts ...InvokeOption) (*GetWorkspaceApplicationTaskSchedulesResult, error)
    func GetWorkspaceApplicationTaskSchedulesOutput(ctx *Context, args *GetWorkspaceApplicationTaskSchedulesOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationTaskSchedulesResultOutput

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

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

    The following arguments are supported:

    ApplicationKey string
    The application key.
    WorkspaceId string
    The workspace ID.
    Filters List<GetWorkspaceApplicationTaskSchedulesFilter>
    Identifiers List<string>
    Used to filter by the identifier of the object.
    IsEnabled bool
    This filter parameter can be used to filter task schedule by its state.
    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
    ApplicationKey string
    The application key.
    WorkspaceId string
    The workspace ID.
    Filters []GetWorkspaceApplicationTaskSchedulesFilter
    Identifiers []string
    Used to filter by the identifier of the object.
    IsEnabled bool
    This filter parameter can be used to filter task schedule by its state.
    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
    applicationKey String
    The application key.
    workspaceId String
    The workspace ID.
    filters List<GetWorkspaceApplicationTaskSchedulesFilter>
    identifiers List<String>
    Used to filter by the identifier of the object.
    isEnabled Boolean
    This filter parameter can be used to filter task schedule by its state.
    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
    applicationKey string
    The application key.
    workspaceId string
    The workspace ID.
    filters GetWorkspaceApplicationTaskSchedulesFilter[]
    identifiers string[]
    Used to filter by the identifier of the object.
    isEnabled boolean
    This filter parameter can be used to filter task schedule by its state.
    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
    application_key str
    The application key.
    workspace_id str
    The workspace ID.
    filters Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesFilter]
    identifiers Sequence[str]
    Used to filter by the identifier of the object.
    is_enabled bool
    This filter parameter can be used to filter task schedule by its state.
    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
    applicationKey String
    The application key.
    workspaceId String
    The workspace ID.
    filters List<Property Map>
    identifiers List<String>
    Used to filter by the identifier of the object.
    isEnabled Boolean
    This filter parameter can be used to filter task schedule by its state.
    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

    getWorkspaceApplicationTaskSchedules Result

    The following output properties are available:

    ApplicationKey string
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskScheduleSummaryCollections List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection>
    The list of task_schedule_summary_collection.
    WorkspaceId string
    Filters List<GetWorkspaceApplicationTaskSchedulesFilter>
    Identifiers List<string>
    The identifier of the aggregator.
    IsEnabled bool
    Whether the schedule is enabled.
    Keys List<string>
    The key of the aggregator 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 type of the aggregator.
    ApplicationKey string
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskScheduleSummaryCollections []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection
    The list of task_schedule_summary_collection.
    WorkspaceId string
    Filters []GetWorkspaceApplicationTaskSchedulesFilter
    Identifiers []string
    The identifier of the aggregator.
    IsEnabled bool
    Whether the schedule is enabled.
    Keys []string
    The key of the aggregator 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 type of the aggregator.
    applicationKey String
    id String
    The provider-assigned unique ID for this managed resource.
    taskScheduleSummaryCollections List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection>
    The list of task_schedule_summary_collection.
    workspaceId String
    filters List<GetWorkspaceApplicationTaskSchedulesFilter>
    identifiers List<String>
    The identifier of the aggregator.
    isEnabled Boolean
    Whether the schedule is enabled.
    keys List<String>
    The key of the aggregator 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 type of the aggregator.
    applicationKey string
    id string
    The provider-assigned unique ID for this managed resource.
    taskScheduleSummaryCollections GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection[]
    The list of task_schedule_summary_collection.
    workspaceId string
    filters GetWorkspaceApplicationTaskSchedulesFilter[]
    identifiers string[]
    The identifier of the aggregator.
    isEnabled boolean
    Whether the schedule is enabled.
    keys string[]
    The key of the aggregator 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 type of the aggregator.
    application_key str
    id str
    The provider-assigned unique ID for this managed resource.
    task_schedule_summary_collections Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection]
    The list of task_schedule_summary_collection.
    workspace_id str
    filters Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesFilter]
    identifiers Sequence[str]
    The identifier of the aggregator.
    is_enabled bool
    Whether the schedule is enabled.
    keys Sequence[str]
    The key of the aggregator 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 type of the aggregator.
    applicationKey String
    id String
    The provider-assigned unique ID for this managed resource.
    taskScheduleSummaryCollections List<Property Map>
    The list of task_schedule_summary_collection.
    workspaceId String
    filters List<Property Map>
    identifiers List<String>
    The identifier of the aggregator.
    isEnabled Boolean
    Whether the schedule is enabled.
    keys List<String>
    The key of the aggregator 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 type of the aggregator.

    Supporting Types

    GetWorkspaceApplicationTaskSchedulesFilter

    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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItem

    ApplicationKey string
    The application key.
    AuthMode string
    The authorization mode for the task.
    ConfigProviderDelegate string
    Description string
    The description of the aggregator.
    EndTimeMillis string
    The end time in milliseconds.
    ExpectedDuration double
    The expected duration of the task execution.
    ExpectedDurationUnit string
    The expected duration unit of the task execution.
    Identifier string
    Used to filter by the identifier of the object.
    IsBackfillEnabled bool
    Whether the backfill is enabled
    IsConcurrentAllowed bool
    Whether the same task can be executed concurrently.
    IsEnabled bool
    This filter parameter can be used to filter task schedule by its state.
    Key string
    Used to filter by the key of the object.
    LastRunDetails List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail>
    The last run details for the task run.
    Metadatas List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    Used to filter by the name of the object.
    NextRunTimeMillis string
    NumberOfRetries int
    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.
    ParentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef
    A reference to the object's parent.
    RegistryMetadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata
    RetryAttempts int
    The number of retry attempts.
    RetryDelay double
    The retry delay, the unit for measurement is in the property retry delay unit.
    RetryDelayUnit string
    The unit for the retry delay.
    ScheduleRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef
    The schedule object
    StartTimeMillis string
    The start time in milliseconds.
    WorkspaceId string
    The workspace ID.
    ApplicationKey string
    The application key.
    AuthMode string
    The authorization mode for the task.
    ConfigProviderDelegate string
    Description string
    The description of the aggregator.
    EndTimeMillis string
    The end time in milliseconds.
    ExpectedDuration float64
    The expected duration of the task execution.
    ExpectedDurationUnit string
    The expected duration unit of the task execution.
    Identifier string
    Used to filter by the identifier of the object.
    IsBackfillEnabled bool
    Whether the backfill is enabled
    IsConcurrentAllowed bool
    Whether the same task can be executed concurrently.
    IsEnabled bool
    This filter parameter can be used to filter task schedule by its state.
    Key string
    Used to filter by the key of the object.
    LastRunDetails []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail
    The last run details for the task run.
    Metadatas []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    Used to filter by the name of the object.
    NextRunTimeMillis string
    NumberOfRetries int
    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.
    ParentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef
    A reference to the object's parent.
    RegistryMetadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata
    RetryAttempts int
    The number of retry attempts.
    RetryDelay float64
    The retry delay, the unit for measurement is in the property retry delay unit.
    RetryDelayUnit string
    The unit for the retry delay.
    ScheduleRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef
    The schedule object
    StartTimeMillis string
    The start time in milliseconds.
    WorkspaceId string
    The workspace ID.
    applicationKey String
    The application key.
    authMode String
    The authorization mode for the task.
    configProviderDelegate String
    description String
    The description of the aggregator.
    endTimeMillis String
    The end time in milliseconds.
    expectedDuration Double
    The expected duration of the task execution.
    expectedDurationUnit String
    The expected duration unit of the task execution.
    identifier String
    Used to filter by the identifier of the object.
    isBackfillEnabled Boolean
    Whether the backfill is enabled
    isConcurrentAllowed Boolean
    Whether the same task can be executed concurrently.
    isEnabled Boolean
    This filter parameter can be used to filter task schedule by its state.
    key String
    Used to filter by the key of the object.
    lastRunDetails List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail>
    The last run details for the task run.
    metadatas List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    Used to filter by the name of the object.
    nextRunTimeMillis String
    numberOfRetries Integer
    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.
    parentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef
    A reference to the object's parent.
    registryMetadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata
    retryAttempts Integer
    The number of retry attempts.
    retryDelay Double
    The retry delay, the unit for measurement is in the property retry delay unit.
    retryDelayUnit String
    The unit for the retry delay.
    scheduleRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef
    The schedule object
    startTimeMillis String
    The start time in milliseconds.
    workspaceId String
    The workspace ID.
    applicationKey string
    The application key.
    authMode string
    The authorization mode for the task.
    configProviderDelegate string
    description string
    The description of the aggregator.
    endTimeMillis string
    The end time in milliseconds.
    expectedDuration number
    The expected duration of the task execution.
    expectedDurationUnit string
    The expected duration unit of the task execution.
    identifier string
    Used to filter by the identifier of the object.
    isBackfillEnabled boolean
    Whether the backfill is enabled
    isConcurrentAllowed boolean
    Whether the same task can be executed concurrently.
    isEnabled boolean
    This filter parameter can be used to filter task schedule by its state.
    key string
    Used to filter by the key of the object.
    lastRunDetails GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail[]
    The last run details for the task run.
    metadatas GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the object.
    modelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name string
    Used to filter by the name of the object.
    nextRunTimeMillis string
    numberOfRetries number
    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.
    parentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef
    A reference to the object's parent.
    registryMetadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata
    retryAttempts number
    The number of retry attempts.
    retryDelay number
    The retry delay, the unit for measurement is in the property retry delay unit.
    retryDelayUnit string
    The unit for the retry delay.
    scheduleRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef
    The schedule object
    startTimeMillis string
    The start time in milliseconds.
    workspaceId string
    The workspace ID.
    application_key str
    The application key.
    auth_mode str
    The authorization mode for the task.
    config_provider_delegate str
    description str
    The description of the aggregator.
    end_time_millis str
    The end time in milliseconds.
    expected_duration float
    The expected duration of the task execution.
    expected_duration_unit str
    The expected duration unit of the task execution.
    identifier str
    Used to filter by the identifier of the object.
    is_backfill_enabled bool
    Whether the backfill is enabled
    is_concurrent_allowed bool
    Whether the same task can be executed concurrently.
    is_enabled bool
    This filter parameter can be used to filter task schedule by its state.
    key str
    Used to filter by the key of the object.
    last_run_details Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail]
    The last run details for the task run.
    metadatas Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The type of the object.
    model_version str
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name str
    Used to filter by the name of the object.
    next_run_time_millis str
    number_of_retries int
    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.
    parent_ref dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef
    A reference to the object's parent.
    registry_metadata dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata
    retry_attempts int
    The number of retry attempts.
    retry_delay float
    The retry delay, the unit for measurement is in the property retry delay unit.
    retry_delay_unit str
    The unit for the retry delay.
    schedule_ref dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef
    The schedule object
    start_time_millis str
    The start time in milliseconds.
    workspace_id str
    The workspace ID.
    applicationKey String
    The application key.
    authMode String
    The authorization mode for the task.
    configProviderDelegate String
    description String
    The description of the aggregator.
    endTimeMillis String
    The end time in milliseconds.
    expectedDuration Number
    The expected duration of the task execution.
    expectedDurationUnit String
    The expected duration unit of the task execution.
    identifier String
    Used to filter by the identifier of the object.
    isBackfillEnabled Boolean
    Whether the backfill is enabled
    isConcurrentAllowed Boolean
    Whether the same task can be executed concurrently.
    isEnabled Boolean
    This filter parameter can be used to filter task schedule by its state.
    key String
    Used to filter by the key of the object.
    lastRunDetails List<Property Map>
    The last run details for the task run.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    Used to filter by the name of the object.
    nextRunTimeMillis String
    numberOfRetries Number
    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.
    parentRef Property Map
    A reference to the object's parent.
    registryMetadata Property Map
    retryAttempts Number
    The number of retry attempts.
    retryDelay Number
    The retry delay, the unit for measurement is in the property retry delay unit.
    retryDelayUnit String
    The unit for the retry delay.
    scheduleRef Property Map
    The schedule object
    startTimeMillis String
    The start time in milliseconds.
    workspaceId String
    The workspace ID.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail

    Description string
    The description of the aggregator.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    Used to filter by the key of the object.
    LastRunTimeMillis string
    Time in milliseconds for the pervious schedule.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    ParentReves List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef>
    A reference to the object's parent.
    Description string
    The description of the aggregator.
    Identifier string
    Used to filter by the identifier of the object.
    Key string
    Used to filter by the key of the object.
    LastRunTimeMillis string
    Time in milliseconds for the pervious schedule.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    ParentReves []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef
    A reference to the object's parent.
    description String
    The description of the aggregator.
    identifier String
    Used to filter by the identifier of the object.
    key String
    Used to filter by the key of the object.
    lastRunTimeMillis String
    Time in milliseconds for the pervious schedule.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentReves List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef>
    A reference to the object's parent.
    description string
    The description of the aggregator.
    identifier string
    Used to filter by the identifier of the object.
    key string
    Used to filter by the key of the object.
    lastRunTimeMillis string
    Time in milliseconds for the pervious schedule.
    modelType string
    The type of the object.
    modelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentReves GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef[]
    A reference to the object's parent.
    description str
    The description of the aggregator.
    identifier str
    Used to filter by the identifier of the object.
    key str
    Used to filter by the key of the object.
    last_run_time_millis str
    Time in milliseconds for the pervious schedule.
    model_type str
    The type of the object.
    model_version str
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parent_reves Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef]
    A reference to the object's parent.
    description String
    The description of the aggregator.
    identifier String
    Used to filter by the identifier of the object.
    key String
    Used to filter by the key of the object.
    lastRunTimeMillis String
    Time in milliseconds for the pervious schedule.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentReves List<Property Map>
    A reference to the object's parent.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef

    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.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata

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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator

    Description string
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatisticObjectTypeCountList

    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.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef

    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.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata

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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef

    Description string
    The description of the aggregator.
    FrequencyDetails GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
    The model that holds the frequency details.
    Identifier string
    Used to filter by the identifier of the object.
    IsDaylightAdjustmentEnabled bool
    Key string
    Used to filter by the key of the object.
    Metadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    ParentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
    A reference to the object's parent.
    Timezone string
    The timezone for the schedule.
    Description string
    The description of the aggregator.
    FrequencyDetails GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
    The model that holds the frequency details.
    Identifier string
    Used to filter by the identifier of the object.
    IsDaylightAdjustmentEnabled bool
    Key string
    Used to filter by the key of the object.
    Metadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    The type of the object.
    ModelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    ParentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
    A reference to the object's parent.
    Timezone string
    The timezone for the schedule.
    description String
    The description of the aggregator.
    frequencyDetails GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
    The model that holds the frequency details.
    identifier String
    Used to filter by the identifier of the object.
    isDaylightAdjustmentEnabled Boolean
    key String
    Used to filter by the key of the object.
    metadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
    A reference to the object's parent.
    timezone String
    The timezone for the schedule.
    description string
    The description of the aggregator.
    frequencyDetails GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
    The model that holds the frequency details.
    identifier string
    Used to filter by the identifier of the object.
    isDaylightAdjustmentEnabled boolean
    key string
    Used to filter by the key of the object.
    metadata GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    The type of the object.
    modelVersion string
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentRef GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
    A reference to the object's parent.
    timezone string
    The timezone for the schedule.
    description str
    The description of the aggregator.
    frequency_details dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
    The model that holds the frequency details.
    identifier str
    Used to filter by the identifier of the object.
    is_daylight_adjustment_enabled bool
    key str
    Used to filter by the key of the object.
    metadata dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    The type of the object.
    model_version str
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parent_ref dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
    A reference to the object's parent.
    timezone str
    The timezone for the schedule.
    description String
    The description of the aggregator.
    frequencyDetails Property Map
    The model that holds the frequency details.
    identifier String
    Used to filter by the identifier of the object.
    isDaylightAdjustmentEnabled Boolean
    key String
    Used to filter by the key of the object.
    metadata Property Map
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    The type of the object.
    modelVersion String
    This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    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.
    parentRef Property Map
    A reference to the object's parent.
    timezone String
    The timezone for the schedule.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails

    CustomExpression string
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    DayOfWeek string
    This holds the day of the week on which the schedule should be triggered.
    Days List<int>
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    Frequency string
    the frequency of the schedule.
    Interval int
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    ModelType string
    The type of the object.
    Time GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
    A model to hold time in hour:minute:second format.
    WeekOfMonth string
    This holds the week of the month in which the schedule should be triggered.
    CustomExpression string
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    DayOfWeek string
    This holds the day of the week on which the schedule should be triggered.
    Days []int
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    Frequency string
    the frequency of the schedule.
    Interval int
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    ModelType string
    The type of the object.
    Time GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
    A model to hold time in hour:minute:second format.
    WeekOfMonth string
    This holds the week of the month in which the schedule should be triggered.
    customExpression String
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek String
    This holds the day of the week on which the schedule should be triggered.
    days List<Integer>
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency String
    the frequency of the schedule.
    interval Integer
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    modelType String
    The type of the object.
    time GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
    A model to hold time in hour:minute:second format.
    weekOfMonth String
    This holds the week of the month in which the schedule should be triggered.
    customExpression string
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek string
    This holds the day of the week on which the schedule should be triggered.
    days number[]
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency string
    the frequency of the schedule.
    interval number
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    modelType string
    The type of the object.
    time GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
    A model to hold time in hour:minute:second format.
    weekOfMonth string
    This holds the week of the month in which the schedule should be triggered.
    custom_expression str
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    day_of_week str
    This holds the day of the week on which the schedule should be triggered.
    days Sequence[int]
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency str
    the frequency of the schedule.
    interval int
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    model_type str
    The type of the object.
    time dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
    A model to hold time in hour:minute:second format.
    week_of_month str
    This holds the week of the month in which the schedule should be triggered.
    customExpression String
    This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek String
    This holds the day of the week on which the schedule should be triggered.
    days List<Number>
    A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency String
    the frequency of the schedule.
    interval Number
    This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    modelType String
    The type of the object.
    time Property Map
    A model to hold time in hour:minute:second format.
    weekOfMonth String
    This holds the week of the month in which the schedule should be triggered.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime

    Hour int
    The hour value.
    Minute int
    The minute value.
    Second int
    The second value.
    Hour int
    The hour value.
    Minute int
    The minute value.
    Second int
    The second value.
    hour Integer
    The hour value.
    minute Integer
    The minute value.
    second Integer
    The second value.
    hour number
    The hour value.
    minute number
    The minute value.
    second number
    The second value.
    hour int
    The hour value.
    minute int
    The minute value.
    second int
    The second value.
    hour Number
    The hour value.
    minute Number
    The minute value.
    second Number
    The second value.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata

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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator

    Description string
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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
    The description of the aggregator.
    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

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatisticsObjectTypeCountList

    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.

    GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef

    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