1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. getSchedules
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DataScience.getSchedules

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Schedules in Oracle Cloud Infrastructure Data Science service.

    Returns a list of Schedules.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedules = oci.DataScience.getSchedules({
        compartmentId: compartmentId,
        displayName: scheduleDisplayName,
        id: scheduleId,
        projectId: testProject.id,
        state: scheduleState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_schedules = oci.DataScience.get_schedules(compartment_id=compartment_id,
        display_name=schedule_display_name,
        id=schedule_id,
        project_id=test_project["id"],
        state=schedule_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datascience.GetSchedules(ctx, &datascience.GetSchedulesArgs{
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(scheduleDisplayName),
    			Id:            pulumi.StringRef(scheduleId),
    			ProjectId:     pulumi.StringRef(testProject.Id),
    			State:         pulumi.StringRef(scheduleState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSchedules = Oci.DataScience.GetSchedules.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = scheduleDisplayName,
            Id = scheduleId,
            ProjectId = testProject.Id,
            State = scheduleState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.DataScienceFunctions;
    import com.pulumi.oci.DataScience.inputs.GetSchedulesArgs;
    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 testSchedules = DataScienceFunctions.getSchedules(GetSchedulesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(scheduleDisplayName)
                .id(scheduleId)
                .projectId(testProject.id())
                .state(scheduleState)
                .build());
    
        }
    }
    
    variables:
      testSchedules:
        fn::invoke:
          function: oci:DataScience:getSchedules
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${scheduleDisplayName}
            id: ${scheduleId}
            projectId: ${testProject.id}
            state: ${scheduleState}
    

    Using getSchedules

    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 getSchedules(args: GetSchedulesArgs, opts?: InvokeOptions): Promise<GetSchedulesResult>
    function getSchedulesOutput(args: GetSchedulesOutputArgs, opts?: InvokeOptions): Output<GetSchedulesResult>
    def get_schedules(compartment_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      filters: Optional[Sequence[_datascience.GetSchedulesFilter]] = None,
                      id: Optional[str] = None,
                      project_id: Optional[str] = None,
                      state: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetSchedulesResult
    def get_schedules_output(compartment_id: Optional[pulumi.Input[str]] = None,
                      display_name: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datascience.GetSchedulesFilterArgs]]]] = None,
                      id: Optional[pulumi.Input[str]] = None,
                      project_id: Optional[pulumi.Input[str]] = None,
                      state: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetSchedulesResult]
    func GetSchedules(ctx *Context, args *GetSchedulesArgs, opts ...InvokeOption) (*GetSchedulesResult, error)
    func GetSchedulesOutput(ctx *Context, args *GetSchedulesOutputArgs, opts ...InvokeOption) GetSchedulesResultOutput

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

    public static class GetSchedules 
    {
        public static Task<GetSchedulesResult> InvokeAsync(GetSchedulesArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulesResult> Invoke(GetSchedulesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulesResult> getSchedules(GetSchedulesArgs args, InvokeOptions options)
    public static Output<GetSchedulesResult> getSchedules(GetSchedulesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataScience/getSchedules:getSchedules
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    Filter results by the OCID of the compartment.
    DisplayName string
    Filter results by its user-friendly name.
    Filters List<GetSchedulesFilter>
    Id string
    unique Schedule identifier
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    CompartmentId string
    Filter results by the OCID of the compartment.
    DisplayName string
    Filter results by its user-friendly name.
    Filters []GetSchedulesFilter
    Id string
    unique Schedule identifier
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    displayName String
    Filter results by its user-friendly name.
    filters List<GetSchedulesFilter>
    id String
    unique Schedule identifier
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId string
    Filter results by the OCID of the compartment.
    displayName string
    Filter results by its user-friendly name.
    filters GetSchedulesFilter[]
    id string
    unique Schedule identifier
    projectId string
    Filter results by the OCID of the project.
    state string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartment_id str
    Filter results by the OCID of the compartment.
    display_name str
    Filter results by its user-friendly name.
    filters Sequence[datascience.GetSchedulesFilter]
    id str
    unique Schedule identifier
    project_id str
    Filter results by the OCID of the project.
    state str
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId String
    Filter results by the OCID of the compartment.
    displayName String
    Filter results by its user-friendly name.
    filters List<Property Map>
    id String
    unique Schedule identifier
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.

    getSchedules Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment where you want to create the schedule.
    Schedules List<GetSchedulesSchedule>
    The list of schedules.
    DisplayName string
    A user-friendly display name for the resource. Avoid entering confidential information.
    Filters List<GetSchedulesFilter>
    Id string
    The OCID of the schedule.
    ProjectId string
    The OCID of the project associated with the schedule.
    State string
    The current state of the schedule. Example: ACTIVE
    CompartmentId string
    The OCID of the compartment where you want to create the schedule.
    Schedules []GetSchedulesSchedule
    The list of schedules.
    DisplayName string
    A user-friendly display name for the resource. Avoid entering confidential information.
    Filters []GetSchedulesFilter
    Id string
    The OCID of the schedule.
    ProjectId string
    The OCID of the project associated with the schedule.
    State string
    The current state of the schedule. Example: ACTIVE
    compartmentId String
    The OCID of the compartment where you want to create the schedule.
    schedules List<GetSchedulesSchedule>
    The list of schedules.
    displayName String
    A user-friendly display name for the resource. Avoid entering confidential information.
    filters List<GetSchedulesFilter>
    id String
    The OCID of the schedule.
    projectId String
    The OCID of the project associated with the schedule.
    state String
    The current state of the schedule. Example: ACTIVE
    compartmentId string
    The OCID of the compartment where you want to create the schedule.
    schedules GetSchedulesSchedule[]
    The list of schedules.
    displayName string
    A user-friendly display name for the resource. Avoid entering confidential information.
    filters GetSchedulesFilter[]
    id string
    The OCID of the schedule.
    projectId string
    The OCID of the project associated with the schedule.
    state string
    The current state of the schedule. Example: ACTIVE
    compartment_id str
    The OCID of the compartment where you want to create the schedule.
    schedules Sequence[datascience.GetSchedulesSchedule]
    The list of schedules.
    display_name str
    A user-friendly display name for the resource. Avoid entering confidential information.
    filters Sequence[datascience.GetSchedulesFilter]
    id str
    The OCID of the schedule.
    project_id str
    The OCID of the project associated with the schedule.
    state str
    The current state of the schedule. Example: ACTIVE
    compartmentId String
    The OCID of the compartment where you want to create the schedule.
    schedules List<Property Map>
    The list of schedules.
    displayName String
    A user-friendly display name for the resource. Avoid entering confidential information.
    filters List<Property Map>
    id String
    The OCID of the schedule.
    projectId String
    The OCID of the project associated with the schedule.
    state String
    The current state of the schedule. Example: ACTIVE

    Supporting Types

    GetSchedulesFilter

    Name string
    Name of trigger parameter
    Values List<string>
    Regex bool
    Name string
    Name of trigger parameter
    Values []string
    Regex bool
    name String
    Name of trigger parameter
    values List<String>
    regex Boolean
    name string
    Name of trigger parameter
    values string[]
    regex boolean
    name str
    Name of trigger parameter
    values Sequence[str]
    regex bool
    name String
    Name of trigger parameter
    values List<String>
    regex Boolean

    GetSchedulesSchedule

    Actions List<GetSchedulesScheduleAction>
    The schedule action
    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    The OCID of the user who created the schedule.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the schedule.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    Id string
    unique Schedule identifier
    LastScheduleRunDetails string
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    LifecycleDetails string
    A message describing the current state in more detail.
    LogDetails List<GetSchedulesScheduleLogDetail>
    Custom logging details for schedule execution.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeLastScheduleRun string
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeNextScheduledRun string
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeUpdated string
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    Triggers List<GetSchedulesScheduleTrigger>
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval
    Actions []GetSchedulesScheduleAction
    The schedule action
    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    The OCID of the user who created the schedule.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the schedule.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    Id string
    unique Schedule identifier
    LastScheduleRunDetails string
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    LifecycleDetails string
    A message describing the current state in more detail.
    LogDetails []GetSchedulesScheduleLogDetail
    Custom logging details for schedule execution.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeLastScheduleRun string
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeNextScheduledRun string
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    TimeUpdated string
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    Triggers []GetSchedulesScheduleTrigger
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval
    actions List<GetSchedulesScheduleAction>
    The schedule action
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    The OCID of the user who created the schedule.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the schedule.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id String
    unique Schedule identifier
    lastScheduleRunDetails String
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    lifecycleDetails String
    A message describing the current state in more detail.
    logDetails List<GetSchedulesScheduleLogDetail>
    Custom logging details for schedule execution.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeLastScheduleRun String
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeNextScheduledRun String
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeUpdated String
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    triggers List<GetSchedulesScheduleTrigger>
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval
    actions GetSchedulesScheduleAction[]
    The schedule action
    compartmentId string
    Filter results by the OCID of the compartment.
    createdBy string
    The OCID of the user who created the schedule.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    A short description of the schedule.
    displayName string
    Filter results by its user-friendly name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id string
    unique Schedule identifier
    lastScheduleRunDetails string
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    lifecycleDetails string
    A message describing the current state in more detail.
    logDetails GetSchedulesScheduleLogDetail[]
    Custom logging details for schedule execution.
    projectId string
    Filter results by the OCID of the project.
    state string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeLastScheduleRun string
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeNextScheduledRun string
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeUpdated string
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    triggers GetSchedulesScheduleTrigger[]
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval
    actions Sequence[datascience.GetSchedulesScheduleAction]
    The schedule action
    compartment_id str
    Filter results by the OCID of the compartment.
    created_by str
    The OCID of the user who created the schedule.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    A short description of the schedule.
    display_name str
    Filter results by its user-friendly name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id str
    unique Schedule identifier
    last_schedule_run_details str
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    lifecycle_details str
    A message describing the current state in more detail.
    log_details Sequence[datascience.GetSchedulesScheduleLogDetail]
    Custom logging details for schedule execution.
    project_id str
    Filter results by the OCID of the project.
    state str
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    time_last_schedule_run str
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    time_next_scheduled_run str
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    time_updated str
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    triggers Sequence[datascience.GetSchedulesScheduleTrigger]
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval
    actions List<Property Map>
    The schedule action
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    The OCID of the user who created the schedule.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the schedule.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    id String
    unique Schedule identifier
    lastScheduleRunDetails String
    Details about the action performed by the last schedule execution. Example: Invoked ML Application trigger.
    lifecycleDetails String
    A message describing the current state in more detail.
    logDetails List<Property Map>
    Custom logging details for schedule execution.
    projectId String
    Filter results by the OCID of the project.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the schedule was created. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeLastScheduleRun String
    The last schedule execution time. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeNextScheduledRun String
    The next scheduled execution time for the schedule. Format is defined by RFC3339. Example: 2022-08-05T01:02:29.600Z
    timeUpdated String
    The date and time the schedule was updated. Format is defined by RFC3339. Example: 2022-09-05T01:02:29.600Z
    triggers List<Property Map>
    The trigger of the schedule can be UNIX cron or iCal expression or simple interval

    GetSchedulesScheduleAction

    ActionDetails List<GetSchedulesScheduleActionActionDetail>
    Schedule Http action details
    ActionType string
    The Schedule Action type
    ActionDetails []GetSchedulesScheduleActionActionDetail
    Schedule Http action details
    ActionType string
    The Schedule Action type
    actionDetails List<GetSchedulesScheduleActionActionDetail>
    Schedule Http action details
    actionType String
    The Schedule Action type
    actionDetails GetSchedulesScheduleActionActionDetail[]
    Schedule Http action details
    actionType string
    The Schedule Action type
    action_details Sequence[datascience.GetSchedulesScheduleActionActionDetail]
    Schedule Http action details
    action_type str
    The Schedule Action type
    actionDetails List<Property Map>
    Schedule Http action details
    actionType String
    The Schedule Action type

    GetSchedulesScheduleActionActionDetail

    createJobRunDetails List<Property Map>
    Parameters needed to create a new job run.
    createPipelineRunDetails List<Property Map>
    The information about new PipelineRun.
    httpActionType String
    The type of http action to trigger.
    mlApplicationInstanceViewId String
    The OCID of the schedule.
    triggerMlApplicationInstanceViewFlowDetails List<Property Map>
    Payload for trigger request endpoint

    GetSchedulesScheduleActionActionDetailCreateJobRunDetail

    CompartmentId string
    Filter results by the OCID of the compartment.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    JobConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail>
    The job configuration details
    JobEnvironmentConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail>
    Environment configuration to capture job runtime dependencies.
    JobId string
    The OCID of the job to create a run for.
    JobLogConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail>
    Logging configuration for resource.
    ProjectId string
    Filter results by the OCID of the project.
    CompartmentId string
    Filter results by the OCID of the compartment.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    JobConfigurationOverrideDetails []GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail
    The job configuration details
    JobEnvironmentConfigurationOverrideDetails []GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail
    Environment configuration to capture job runtime dependencies.
    JobId string
    The OCID of the job to create a run for.
    JobLogConfigurationOverrideDetails []GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail
    Logging configuration for resource.
    ProjectId string
    Filter results by the OCID of the project.
    compartmentId String
    Filter results by the OCID of the compartment.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    jobConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail>
    The job configuration details
    jobEnvironmentConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail>
    Environment configuration to capture job runtime dependencies.
    jobId String
    The OCID of the job to create a run for.
    jobLogConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail>
    Logging configuration for resource.
    projectId String
    Filter results by the OCID of the project.
    compartmentId string
    Filter results by the OCID of the compartment.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    Filter results by its user-friendly name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    jobConfigurationOverrideDetails GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail[]
    The job configuration details
    jobEnvironmentConfigurationOverrideDetails GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail[]
    Environment configuration to capture job runtime dependencies.
    jobId string
    The OCID of the job to create a run for.
    jobLogConfigurationOverrideDetails GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail[]
    Logging configuration for resource.
    projectId string
    Filter results by the OCID of the project.
    compartment_id str
    Filter results by the OCID of the compartment.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    Filter results by its user-friendly name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    job_configuration_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail]
    The job configuration details
    job_environment_configuration_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail]
    Environment configuration to capture job runtime dependencies.
    job_id str
    The OCID of the job to create a run for.
    job_log_configuration_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail]
    Logging configuration for resource.
    project_id str
    Filter results by the OCID of the project.
    compartmentId String
    Filter results by the OCID of the compartment.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    jobConfigurationOverrideDetails List<Property Map>
    The job configuration details
    jobEnvironmentConfigurationOverrideDetails List<Property Map>
    Environment configuration to capture job runtime dependencies.
    jobId String
    The OCID of the job to create a run for.
    jobLogConfigurationOverrideDetails List<Property Map>
    Logging configuration for resource.
    projectId String
    Filter results by the OCID of the project.

    GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobConfigurationOverrideDetail

    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables Dictionary<string, string>
    Environment variables to set for step.
    JobType string
    The type of job.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables map[string]string
    Environment variables to set for step.
    JobType string
    The type of job.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String,String>
    Environment variables to set for step.
    jobType String
    The type of job.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.
    commandLineArguments string
    The command line arguments to set for step.
    environmentVariables {[key: string]: string}
    Environment variables to set for step.
    jobType string
    The type of job.
    maximumRuntimeInMinutes string
    A time bound for the execution of the step.
    command_line_arguments str
    The command line arguments to set for step.
    environment_variables Mapping[str, str]
    Environment variables to set for step.
    job_type str
    The type of job.
    maximum_runtime_in_minutes str
    A time bound for the execution of the step.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String>
    Environment variables to set for step.
    jobType String
    The type of job.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.

    GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobEnvironmentConfigurationOverrideDetail

    Cmds List<string>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    Entrypoints List<string>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    Image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    ImageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    ImageSignatureId string
    OCID of the container image signature
    JobEnvironmentType string
    The environment configuration type used for job runtime.
    Cmds []string
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    Entrypoints []string
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    Image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    ImageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    ImageSignatureId string
    OCID of the container image signature
    JobEnvironmentType string
    The environment configuration type used for job runtime.
    cmds List<String>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    entrypoints List<String>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image String
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest String
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId String
    OCID of the container image signature
    jobEnvironmentType String
    The environment configuration type used for job runtime.
    cmds string[]
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    entrypoints string[]
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId string
    OCID of the container image signature
    jobEnvironmentType string
    The environment configuration type used for job runtime.
    cmds Sequence[str]
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    entrypoints Sequence[str]
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image str
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    image_digest str
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    image_signature_id str
    OCID of the container image signature
    job_environment_type str
    The environment configuration type used for job runtime.
    cmds List<String>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    entrypoints List<String>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image String
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest String
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId String
    OCID of the container image signature
    jobEnvironmentType String
    The environment configuration type used for job runtime.

    GetSchedulesScheduleActionActionDetailCreateJobRunDetailJobLogConfigurationOverrideDetail

    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging boolean
    If customer logging is enabled for pipeline.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the custom log to be used for Schedule logging.
    enable_auto_log_creation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enable_logging bool
    If customer logging is enabled for pipeline.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetail

    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail>
    The configuration details of a pipeline.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LogConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    ProjectId string
    Filter results by the OCID of the project.
    StepOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationOverrideDetails []GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail
    The configuration details of a pipeline.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    LogConfigurationOverrideDetails []GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail
    The pipeline log configuration details.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    ProjectId string
    Filter results by the OCID of the project.
    StepOverrideDetails []GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail
    Array of step override details. Only Step Configuration is allowed to be overridden.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail>
    The configuration details of a pipeline.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    logConfigurationOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    projectId String
    Filter results by the OCID of the project.
    stepOverrideDetails List<GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId string
    Filter results by the OCID of the compartment.
    configurationOverrideDetails GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail[]
    The configuration details of a pipeline.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    Filter results by its user-friendly name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    logConfigurationOverrideDetails GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail[]
    The pipeline log configuration details.
    pipelineId string
    The OCID of the pipeline for which pipeline run is created.
    projectId string
    Filter results by the OCID of the project.
    stepOverrideDetails GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail[]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartment_id str
    Filter results by the OCID of the compartment.
    configuration_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail]
    The configuration details of a pipeline.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    Filter results by its user-friendly name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    log_configuration_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail]
    The pipeline log configuration details.
    pipeline_id str
    The OCID of the pipeline for which pipeline run is created.
    project_id str
    Filter results by the OCID of the project.
    step_override_details Sequence[datascience.GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationOverrideDetails List<Property Map>
    The configuration details of a pipeline.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
    logConfigurationOverrideDetails List<Property Map>
    The pipeline log configuration details.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    projectId String
    Filter results by the OCID of the project.
    stepOverrideDetails List<Property Map>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailConfigurationOverrideDetail

    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables Dictionary<string, string>
    Environment variables to set for step.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    Type string
    The type of pipeline.
    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables map[string]string
    Environment variables to set for step.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    Type string
    The type of pipeline.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String,String>
    Environment variables to set for step.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.
    type String
    The type of pipeline.
    commandLineArguments string
    The command line arguments to set for step.
    environmentVariables {[key: string]: string}
    Environment variables to set for step.
    maximumRuntimeInMinutes string
    A time bound for the execution of the step.
    type string
    The type of pipeline.
    command_line_arguments str
    The command line arguments to set for step.
    environment_variables Mapping[str, str]
    Environment variables to set for step.
    maximum_runtime_in_minutes str
    A time bound for the execution of the step.
    type str
    The type of pipeline.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String>
    Environment variables to set for step.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.
    type String
    The type of pipeline.

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailLogConfigurationOverrideDetail

    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging boolean
    If customer logging is enabled for pipeline.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the custom log to be used for Schedule logging.
    enable_auto_log_creation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enable_logging bool
    If customer logging is enabled for pipeline.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the custom log to be used for Schedule logging.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetail

    stepConfigurationDetails List<Property Map>
    The configuration details of a step.
    stepContainerConfigurationDetails List<Property Map>
    Container Details for a step in pipeline.
    stepName String
    The name of the step.

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetailStepConfigurationDetail

    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables Dictionary<string, string>
    Environment variables to set for step.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    CommandLineArguments string
    The command line arguments to set for step.
    EnvironmentVariables map[string]string
    Environment variables to set for step.
    MaximumRuntimeInMinutes string
    A time bound for the execution of the step.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String,String>
    Environment variables to set for step.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.
    commandLineArguments string
    The command line arguments to set for step.
    environmentVariables {[key: string]: string}
    Environment variables to set for step.
    maximumRuntimeInMinutes string
    A time bound for the execution of the step.
    command_line_arguments str
    The command line arguments to set for step.
    environment_variables Mapping[str, str]
    Environment variables to set for step.
    maximum_runtime_in_minutes str
    A time bound for the execution of the step.
    commandLineArguments String
    The command line arguments to set for step.
    environmentVariables Map<String>
    Environment variables to set for step.
    maximumRuntimeInMinutes String
    A time bound for the execution of the step.

    GetSchedulesScheduleActionActionDetailCreatePipelineRunDetailStepOverrideDetailStepContainerConfigurationDetail

    Cmds List<string>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    ContainerType string
    The type of container.
    Entrypoints List<string>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    Image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    ImageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    ImageSignatureId string
    OCID of the container image signature
    Cmds []string
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    ContainerType string
    The type of container.
    Entrypoints []string
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    Image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    ImageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    ImageSignatureId string
    OCID of the container image signature
    cmds List<String>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    containerType String
    The type of container.
    entrypoints List<String>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image String
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest String
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId String
    OCID of the container image signature
    cmds string[]
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    containerType string
    The type of container.
    entrypoints string[]
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image string
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest string
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId string
    OCID of the container image signature
    cmds Sequence[str]
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    container_type str
    The type of container.
    entrypoints Sequence[str]
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image str
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    image_digest str
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    image_signature_id str
    OCID of the container image signature
    cmds List<String>
    The container image run CMD as a list of strings. Use CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.
    containerType String
    The type of container.
    entrypoints List<String>
    The container image run ENTRYPOINT as a list of strings. Accept the CMD as extra arguments. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes. More information on how CMD and ENTRYPOINT interact are here.
    image String
    The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
    imageDigest String
    The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
    imageSignatureId String
    OCID of the container image signature

    GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetail

    Parameters List<GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter>
    Parameters provided for given trigger invocation (they must match predefined schema)
    TriggerName string
    Name of trigger
    Parameters []GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter
    Parameters provided for given trigger invocation (they must match predefined schema)
    TriggerName string
    Name of trigger
    parameters List<GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter>
    Parameters provided for given trigger invocation (they must match predefined schema)
    triggerName String
    Name of trigger
    parameters GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter[]
    Parameters provided for given trigger invocation (they must match predefined schema)
    triggerName string
    Name of trigger
    parameters Sequence[datascience.GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter]
    Parameters provided for given trigger invocation (they must match predefined schema)
    trigger_name str
    Name of trigger
    parameters List<Property Map>
    Parameters provided for given trigger invocation (they must match predefined schema)
    triggerName String
    Name of trigger

    GetSchedulesScheduleActionActionDetailTriggerMlApplicationInstanceViewFlowDetailParameter

    Name string
    Name of trigger parameter
    Value string
    Value of trigger parameter
    Name string
    Name of trigger parameter
    Value string
    Value of trigger parameter
    name String
    Name of trigger parameter
    value String
    Value of trigger parameter
    name string
    Name of trigger parameter
    value string
    Value of trigger parameter
    name str
    Name of trigger parameter
    value str
    Value of trigger parameter
    name String
    Name of trigger parameter
    value String
    Value of trigger parameter

    GetSchedulesScheduleLogDetail

    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the custom log to be used for Schedule logging.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the custom log to be used for Schedule logging.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the custom log to be used for Schedule logging.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the custom log to be used for Schedule logging.

    GetSchedulesScheduleTrigger

    CronExpression string
    Schedule cron expression
    Frequency string
    The type of frequency
    Interval int
    The interval of frequency.
    IsRandomStartTime bool
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    Recurrence string
    This recurrence field conforms to RFC-5545 formatting
    TimeEnd string
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    TimeStart string
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    TriggerType string
    The schedule trigger type
    CronExpression string
    Schedule cron expression
    Frequency string
    The type of frequency
    Interval int
    The interval of frequency.
    IsRandomStartTime bool
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    Recurrence string
    This recurrence field conforms to RFC-5545 formatting
    TimeEnd string
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    TimeStart string
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    TriggerType string
    The schedule trigger type
    cronExpression String
    Schedule cron expression
    frequency String
    The type of frequency
    interval Integer
    The interval of frequency.
    isRandomStartTime Boolean
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    recurrence String
    This recurrence field conforms to RFC-5545 formatting
    timeEnd String
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    timeStart String
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    triggerType String
    The schedule trigger type
    cronExpression string
    Schedule cron expression
    frequency string
    The type of frequency
    interval number
    The interval of frequency.
    isRandomStartTime boolean
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    recurrence string
    This recurrence field conforms to RFC-5545 formatting
    timeEnd string
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    timeStart string
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    triggerType string
    The schedule trigger type
    cron_expression str
    Schedule cron expression
    frequency str
    The type of frequency
    interval int
    The interval of frequency.
    is_random_start_time bool
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    recurrence str
    This recurrence field conforms to RFC-5545 formatting
    time_end str
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    time_start str
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    trigger_type str
    The schedule trigger type
    cronExpression String
    Schedule cron expression
    frequency String
    The type of frequency
    interval Number
    The interval of frequency.
    isRandomStartTime Boolean
    when true and timeStart is null, system generate a random start time between now and now + interval; isRandomStartTime can be true if timeStart is null.
    recurrence String
    This recurrence field conforms to RFC-5545 formatting
    timeEnd String
    The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.
    timeStart String
    The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.
    triggerType String
    The schedule trigger type

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi