1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. getWorkspaceApplicationTaskSchedules
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataIntegration.getWorkspaceApplicationTaskSchedules

Explore with Pulumi AI

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,
});
Copy
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)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataintegration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataintegration.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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
variables:
  testWorkspaceApplicationTaskSchedules:
    fn::invoke:
      function: oci:DataIntegration:getWorkspaceApplicationTaskSchedules
      arguments:
        applicationKey: ${workspaceApplicationTaskScheduleApplicationKey}
        workspaceId: ${testWorkspace.id}
        identifiers: ${workspaceApplicationTaskScheduleIdentifier}
        isEnabled: ${workspaceApplicationTaskScheduleIsEnabled}
        keys: ${workspaceApplicationTaskScheduleKey}
        name: ${workspaceApplicationTaskScheduleName}
        types: ${workspaceApplicationTaskScheduleType}
Copy

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>
Copy
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]
Copy
func GetWorkspaceApplicationTaskSchedules(ctx *Context, args *GetWorkspaceApplicationTaskSchedulesArgs, opts ...InvokeOption) (*GetWorkspaceApplicationTaskSchedulesResult, error)
func GetWorkspaceApplicationTaskSchedulesOutput(ctx *Context, args *GetWorkspaceApplicationTaskSchedulesOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationTaskSchedulesResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetWorkspaceApplicationTaskSchedulesResult> getWorkspaceApplicationTaskSchedules(GetWorkspaceApplicationTaskSchedulesArgs args, InvokeOptions options)
public static Output<GetWorkspaceApplicationTaskSchedulesResult> getWorkspaceApplicationTaskSchedules(GetWorkspaceApplicationTaskSchedulesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataIntegration/getWorkspaceApplicationTaskSchedules:getWorkspaceApplicationTaskSchedules
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApplicationKey This property is required. string
The application key.
WorkspaceId This property is required. string
The workspace ID.
Filters Changes to this property will trigger replacement. 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 This property is required. string
The application key.
WorkspaceId This property is required. string
The workspace ID.
Filters Changes to this property will trigger replacement. []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 This property is required. String
The application key.
workspaceId This property is required. String
The workspace ID.
filters Changes to this property will trigger replacement. 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 This property is required. string
The application key.
workspaceId This property is required. string
The workspace ID.
filters Changes to this property will trigger replacement. 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 This property is required. str
The application key.
workspace_id This property is required. str
The workspace ID.
filters Changes to this property will trigger replacement. 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 This property is required. String
The application key.
workspaceId This property is required. String
The workspace ID.
filters Changes to this property will trigger replacement. 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 This property is required. string
Used to filter by the name of the object.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Used to filter by the name of the object.
Values This property is required. []string
Regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean
name This property is required. string
Used to filter by the name of the object.
values This property is required. string[]
regex boolean
name This property is required. str
Used to filter by the name of the object.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Used to filter by the name of the object.
values This property is required. List<String>
regex Boolean

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollection

items This property is required. List<Property Map>

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItem

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

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetail

Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
LastRunTimeMillis This property is required. string
Time in milliseconds for the pervious schedule.
ModelType This property is required. string
The type of the object.
ModelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
Name This property is required. string
Used to filter by the name of the object.
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
ParentReves This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef>
A reference to the object's parent.
Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
LastRunTimeMillis This property is required. string
Time in milliseconds for the pervious schedule.
ModelType This property is required. string
The type of the object.
ModelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
Name This property is required. string
Used to filter by the name of the object.
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
ParentReves This property is required. []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef
A reference to the object's parent.
description This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
lastRunTimeMillis This property is required. String
Time in milliseconds for the pervious schedule.
modelType This property is required. String
The type of the object.
modelVersion This property is required. String
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. String
Used to filter by the name of the object.
objectStatus This property is required. Integer
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Integer
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentReves This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef>
A reference to the object's parent.
description This property is required. string
The description of the aggregator.
identifier This property is required. string
Used to filter by the identifier of the object.
key This property is required. string
Used to filter by the key of the object.
lastRunTimeMillis This property is required. string
Time in milliseconds for the pervious schedule.
modelType This property is required. string
The type of the object.
modelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. string
Used to filter by the name of the object.
objectStatus This property is required. number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. number
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentReves This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef[]
A reference to the object's parent.
description This property is required. str
The description of the aggregator.
identifier This property is required. str
Used to filter by the identifier of the object.
key This property is required. str
Used to filter by the key of the object.
last_run_time_millis This property is required. str
Time in milliseconds for the pervious schedule.
model_type This property is required. str
The type of the object.
model_version This property is required. str
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. str
Used to filter by the name of the object.
object_status This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parent_reves This property is required. Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef]
A reference to the object's parent.
description This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
lastRunTimeMillis This property is required. String
Time in milliseconds for the pervious schedule.
modelType This property is required. String
The type of the object.
modelVersion This property is required. String
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. String
Used to filter by the name of the object.
objectStatus This property is required. Number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Number
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentReves This property is required. List<Property Map>
A reference to the object's parent.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemLastRunDetailParentRef

Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.
parent This property is required. string
Key of the parent object.
rootDocId This property is required. string
Key of the root document object.
parent This property is required. str
Key of the parent object.
root_doc_id This property is required. str
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadata

AggregatorKey This property is required. string
The owning object key for this object.
Aggregators This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic>
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. Dictionary<string, string>
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. 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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
AggregatorKey This property is required. string
The owning object key for this object.
Aggregators This property is required. []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
CountStatistics This property is required. []GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. map[string]string
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. []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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
aggregatorKey This property is required. String
The owning object key for this object.
aggregators This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator>
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. List<GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic>
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String,String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Integer
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.
aggregatorKey This property is required. string
The owning object key for this object.
aggregators This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator[]
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic[]
A count statistics.
createdBy This property is required. string
The user that created the object.
createdByName This property is required. string
The user that created the object.
identifierPath This property is required. string
The full path to identify this object.
infoFields This property is required. {[key: string]: string}
Information property fields.
isFavorite This property is required. boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. number
The registry version of the object.
timeCreated This property is required. string
The date and time that the object was created.
timeUpdated This property is required. string
The date and time that the object was updated.
updatedBy This property is required. string
The user that updated the object.
updatedByName This property is required. string
The user that updated the object.
aggregator_key This property is required. str
The owning object key for this object.
aggregators This property is required. Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator]
A summary type containing information about the object's aggregator including its type, key, name and description.
count_statistics This property is required. Sequence[dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatistic]
A count statistics.
created_by This property is required. str
The user that created the object.
created_by_name This property is required. str
The user that created the object.
identifier_path This property is required. str
The full path to identify this object.
info_fields This property is required. Mapping[str, str]
Information property fields.
is_favorite This property is required. bool
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. int
The registry version of the object.
time_created This property is required. str
The date and time that the object was created.
time_updated This property is required. str
The date and time that the object was updated.
updated_by This property is required. str
The user that updated the object.
updated_by_name This property is required. str
The user that updated the object.
aggregatorKey This property is required. String
The owning object key for this object.
aggregators This property is required. List<Property Map>
A summary type containing information about the object's aggregator including its type, key, name and description.
countStatistics This property is required. List<Property Map>
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Number
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataAggregator

Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. 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 This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. 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 This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. 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 This property is required. string
The description of the aggregator.
identifier This property is required. string
Used to filter by the identifier of the object.
key This property is required. string
Used to filter by the key of the object.
name This property is required. string
Used to filter by the name of the object.
type This property is required. 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 This property is required. str
The description of the aggregator.
identifier This property is required. str
Used to filter by the identifier of the object.
key This property is required. str
Used to filter by the key of the object.
name This property is required. str
Used to filter by the name of the object.
type This property is required. 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 This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. 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

objectTypeCountLists This property is required. List<Property Map>
The array of statistics.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemMetadataCountStatisticObjectTypeCountList

ObjectCount This property is required. string
The value for the count statistic object.
ObjectType This property is required. string
The type of object for the count statistic object.
ObjectCount This property is required. string
The value for the count statistic object.
ObjectType This property is required. string
The type of object for the count statistic object.
objectCount This property is required. String
The value for the count statistic object.
objectType This property is required. String
The type of object for the count statistic object.
objectCount This property is required. string
The value for the count statistic object.
objectType This property is required. string
The type of object for the count statistic object.
object_count This property is required. str
The value for the count statistic object.
object_type This property is required. str
The type of object for the count statistic object.
objectCount This property is required. String
The value for the count statistic object.
objectType This property is required. String
The type of object for the count statistic object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemParentRef

Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.
parent This property is required. string
Key of the parent object.
rootDocId This property is required. string
Key of the root document object.
parent This property is required. str
Key of the parent object.
root_doc_id This property is required. str
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemRegistryMetadata

AggregatorKey This property is required. string
The owning object key for this object.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Key This property is required. string
Used to filter by the key of the object.
Labels This property is required. 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 This property is required. int
The registry version of the object.
AggregatorKey This property is required. string
The owning object key for this object.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Key This property is required. string
Used to filter by the key of the object.
Labels This property is required. []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 This property is required. int
The registry version of the object.
aggregatorKey This property is required. String
The owning object key for this object.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
key This property is required. String
Used to filter by the key of the object.
labels This property is required. 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 This property is required. Integer
The registry version of the object.
aggregatorKey This property is required. string
The owning object key for this object.
isFavorite This property is required. boolean
Specifies whether this object is a favorite or not.
key This property is required. string
Used to filter by the key of the object.
labels This property is required. 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 This property is required. number
The registry version of the object.
aggregator_key This property is required. str
The owning object key for this object.
is_favorite This property is required. bool
Specifies whether this object is a favorite or not.
key This property is required. str
Used to filter by the key of the object.
labels This property is required. 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 This property is required. int
The registry version of the object.
aggregatorKey This property is required. String
The owning object key for this object.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
key This property is required. String
Used to filter by the key of the object.
labels This property is required. 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 This property is required. Number
The registry version of the object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRef

Description This property is required. string
The description of the aggregator.
FrequencyDetails This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
The model that holds the frequency details.
Identifier This property is required. string
Used to filter by the identifier of the object.
IsDaylightAdjustmentEnabled This property is required. bool
Key This property is required. string
Used to filter by the key of the object.
Metadata This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType This property is required. string
The type of the object.
ModelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
Name This property is required. string
Used to filter by the name of the object.
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
ParentRef This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
A reference to the object's parent.
Timezone This property is required. string
The timezone for the schedule.
Description This property is required. string
The description of the aggregator.
FrequencyDetails This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
The model that holds the frequency details.
Identifier This property is required. string
Used to filter by the identifier of the object.
IsDaylightAdjustmentEnabled This property is required. bool
Key This property is required. string
Used to filter by the key of the object.
Metadata This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
ModelType This property is required. string
The type of the object.
ModelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
Name This property is required. string
Used to filter by the name of the object.
ObjectStatus This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
ObjectVersion This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
ParentRef This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
A reference to the object's parent.
Timezone This property is required. string
The timezone for the schedule.
description This property is required. String
The description of the aggregator.
frequencyDetails This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
The model that holds the frequency details.
identifier This property is required. String
Used to filter by the identifier of the object.
isDaylightAdjustmentEnabled This property is required. Boolean
key This property is required. String
Used to filter by the key of the object.
metadata This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. String
The type of the object.
modelVersion This property is required. String
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. String
Used to filter by the name of the object.
objectStatus This property is required. Integer
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Integer
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentRef This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
A reference to the object's parent.
timezone This property is required. String
The timezone for the schedule.
description This property is required. string
The description of the aggregator.
frequencyDetails This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
The model that holds the frequency details.
identifier This property is required. string
Used to filter by the identifier of the object.
isDaylightAdjustmentEnabled This property is required. boolean
key This property is required. string
Used to filter by the key of the object.
metadata This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. string
The type of the object.
modelVersion This property is required. string
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. string
Used to filter by the name of the object.
objectStatus This property is required. number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. number
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentRef This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
A reference to the object's parent.
timezone This property is required. string
The timezone for the schedule.
description This property is required. str
The description of the aggregator.
frequency_details This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails
The model that holds the frequency details.
identifier This property is required. str
Used to filter by the identifier of the object.
is_daylight_adjustment_enabled This property is required. bool
key This property is required. str
Used to filter by the key of the object.
metadata This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
model_type This property is required. str
The type of the object.
model_version This property is required. str
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. str
Used to filter by the name of the object.
object_status This property is required. int
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version This property is required. int
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parent_ref This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef
A reference to the object's parent.
timezone This property is required. str
The timezone for the schedule.
description This property is required. String
The description of the aggregator.
frequencyDetails This property is required. Property Map
The model that holds the frequency details.
identifier This property is required. String
Used to filter by the identifier of the object.
isDaylightAdjustmentEnabled This property is required. Boolean
key This property is required. String
Used to filter by the key of the object.
metadata This property is required. Property Map
A summary type containing information about the object including its key, name and when/who created/updated it.
modelType This property is required. String
The type of the object.
modelVersion This property is required. String
This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name This property is required. String
Used to filter by the name of the object.
objectStatus This property is required. Number
The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
objectVersion This property is required. Number
This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
parentRef This property is required. Property Map
A reference to the object's parent.
timezone This property is required. String
The timezone for the schedule.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetails

CustomExpression This property is required. 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 This property is required. string
This holds the day of the week on which the schedule should be triggered.
Days This property is required. List<int>
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
Frequency This property is required. string
the frequency of the schedule.
Interval This property is required. 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 This property is required. string
The type of the object.
Time This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
A model to hold time in hour:minute:second format.
WeekOfMonth This property is required. string
This holds the week of the month in which the schedule should be triggered.
CustomExpression This property is required. 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 This property is required. string
This holds the day of the week on which the schedule should be triggered.
Days This property is required. []int
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
Frequency This property is required. string
the frequency of the schedule.
Interval This property is required. 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 This property is required. string
The type of the object.
Time This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
A model to hold time in hour:minute:second format.
WeekOfMonth This property is required. string
This holds the week of the month in which the schedule should be triggered.
customExpression This property is required. 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 This property is required. String
This holds the day of the week on which the schedule should be triggered.
days This property is required. List<Integer>
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
frequency This property is required. String
the frequency of the schedule.
interval This property is required. 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 This property is required. String
The type of the object.
time This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
A model to hold time in hour:minute:second format.
weekOfMonth This property is required. String
This holds the week of the month in which the schedule should be triggered.
customExpression This property is required. 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 This property is required. string
This holds the day of the week on which the schedule should be triggered.
days This property is required. number[]
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
frequency This property is required. string
the frequency of the schedule.
interval This property is required. 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 This property is required. string
The type of the object.
time This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
A model to hold time in hour:minute:second format.
weekOfMonth This property is required. string
This holds the week of the month in which the schedule should be triggered.
custom_expression This property is required. 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 This property is required. str
This holds the day of the week on which the schedule should be triggered.
days This property is required. Sequence[int]
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
frequency This property is required. str
the frequency of the schedule.
interval This property is required. 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 This property is required. str
The type of the object.
time This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime
A model to hold time in hour:minute:second format.
week_of_month This property is required. str
This holds the week of the month in which the schedule should be triggered.
customExpression This property is required. 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 This property is required. String
This holds the day of the week on which the schedule should be triggered.
days This property is required. List<Number>
A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
frequency This property is required. String
the frequency of the schedule.
interval This property is required. 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 This property is required. String
The type of the object.
time This property is required. Property Map
A model to hold time in hour:minute:second format.
weekOfMonth This property is required. String
This holds the week of the month in which the schedule should be triggered.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefFrequencyDetailsTime

Hour This property is required. int
The hour value.
Minute This property is required. int
The minute value.
Second This property is required. int
The second value.
Hour This property is required. int
The hour value.
Minute This property is required. int
The minute value.
Second This property is required. int
The second value.
hour This property is required. Integer
The hour value.
minute This property is required. Integer
The minute value.
second This property is required. Integer
The second value.
hour This property is required. number
The hour value.
minute This property is required. number
The minute value.
second This property is required. number
The second value.
hour This property is required. int
The hour value.
minute This property is required. int
The minute value.
second This property is required. int
The second value.
hour This property is required. Number
The hour value.
minute This property is required. Number
The minute value.
second This property is required. Number
The second value.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadata

Aggregator This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
AggregatorKey This property is required. string
The owning object key for this object.
CountStatistics This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. Dictionary<string, string>
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. 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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
Aggregator This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
AggregatorKey This property is required. string
The owning object key for this object.
CountStatistics This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics
A count statistics.
CreatedBy This property is required. string
The user that created the object.
CreatedByName This property is required. string
The user that created the object.
IdentifierPath This property is required. string
The full path to identify this object.
InfoFields This property is required. map[string]string
Information property fields.
IsFavorite This property is required. bool
Specifies whether this object is a favorite or not.
Labels This property is required. []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 This property is required. int
The registry version of the object.
TimeCreated This property is required. string
The date and time that the object was created.
TimeUpdated This property is required. string
The date and time that the object was updated.
UpdatedBy This property is required. string
The user that updated the object.
UpdatedByName This property is required. string
The user that updated the object.
aggregator This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
aggregatorKey This property is required. String
The owning object key for this object.
countStatistics This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String,String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Integer
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.
aggregator This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
aggregatorKey This property is required. string
The owning object key for this object.
countStatistics This property is required. GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics
A count statistics.
createdBy This property is required. string
The user that created the object.
createdByName This property is required. string
The user that created the object.
identifierPath This property is required. string
The full path to identify this object.
infoFields This property is required. {[key: string]: string}
Information property fields.
isFavorite This property is required. boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. number
The registry version of the object.
timeCreated This property is required. string
The date and time that the object was created.
timeUpdated This property is required. string
The date and time that the object was updated.
updatedBy This property is required. string
The user that updated the object.
updatedByName This property is required. string
The user that updated the object.
aggregator This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator
A summary type containing information about the object's aggregator including its type, key, name and description.
aggregator_key This property is required. str
The owning object key for this object.
count_statistics This property is required. dataintegration.GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatistics
A count statistics.
created_by This property is required. str
The user that created the object.
created_by_name This property is required. str
The user that created the object.
identifier_path This property is required. str
The full path to identify this object.
info_fields This property is required. Mapping[str, str]
Information property fields.
is_favorite This property is required. bool
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. int
The registry version of the object.
time_created This property is required. str
The date and time that the object was created.
time_updated This property is required. str
The date and time that the object was updated.
updated_by This property is required. str
The user that updated the object.
updated_by_name This property is required. str
The user that updated the object.
aggregator This property is required. Property Map
A summary type containing information about the object's aggregator including its type, key, name and description.
aggregatorKey This property is required. String
The owning object key for this object.
countStatistics This property is required. Property Map
A count statistics.
createdBy This property is required. String
The user that created the object.
createdByName This property is required. String
The user that created the object.
identifierPath This property is required. String
The full path to identify this object.
infoFields This property is required. Map<String>
Information property fields.
isFavorite This property is required. Boolean
Specifies whether this object is a favorite or not.
labels This property is required. 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 This property is required. Number
The registry version of the object.
timeCreated This property is required. String
The date and time that the object was created.
timeUpdated This property is required. String
The date and time that the object was updated.
updatedBy This property is required. String
The user that updated the object.
updatedByName This property is required. String
The user that updated the object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataAggregator

Description This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. 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 This property is required. string
The description of the aggregator.
Identifier This property is required. string
Used to filter by the identifier of the object.
Key This property is required. string
Used to filter by the key of the object.
Name This property is required. string
Used to filter by the name of the object.
Type This property is required. 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 This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. 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 This property is required. string
The description of the aggregator.
identifier This property is required. string
Used to filter by the identifier of the object.
key This property is required. string
Used to filter by the key of the object.
name This property is required. string
Used to filter by the name of the object.
type This property is required. 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 This property is required. str
The description of the aggregator.
identifier This property is required. str
Used to filter by the identifier of the object.
key This property is required. str
Used to filter by the key of the object.
name This property is required. str
Used to filter by the name of the object.
type This property is required. 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 This property is required. String
The description of the aggregator.
identifier This property is required. String
Used to filter by the identifier of the object.
key This property is required. String
Used to filter by the key of the object.
name This property is required. String
Used to filter by the name of the object.
type This property is required. 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

objectTypeCountLists This property is required. List<Property Map>
The array of statistics.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefMetadataCountStatisticsObjectTypeCountList

ObjectCount This property is required. string
The value for the count statistic object.
ObjectType This property is required. string
The type of object for the count statistic object.
ObjectCount This property is required. string
The value for the count statistic object.
ObjectType This property is required. string
The type of object for the count statistic object.
objectCount This property is required. String
The value for the count statistic object.
objectType This property is required. String
The type of object for the count statistic object.
objectCount This property is required. string
The value for the count statistic object.
objectType This property is required. string
The type of object for the count statistic object.
object_count This property is required. str
The value for the count statistic object.
object_type This property is required. str
The type of object for the count statistic object.
objectCount This property is required. String
The value for the count statistic object.
objectType This property is required. String
The type of object for the count statistic object.

GetWorkspaceApplicationTaskSchedulesTaskScheduleSummaryCollectionItemScheduleRefParentRef

Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
Parent This property is required. string
Key of the parent object.
RootDocId This property is required. string
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. String
Key of the root document object.
parent This property is required. string
Key of the parent object.
rootDocId This property is required. string
Key of the root document object.
parent This property is required. str
Key of the parent object.
root_doc_id This property is required. str
Key of the root document object.
parent This property is required. String
Key of the parent object.
rootDocId This property is required. 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.