1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. getPipelineRuns
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.DataScience.getPipelineRuns

Start a Neo task
Explain and create an oci.DataScience.getPipelineRuns resource
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

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

    Returns a list of PipelineRuns.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testPipelineRuns = oci.DataScience.getPipelineRuns({
        compartmentId: compartmentId,
        createdBy: pipelineRunCreatedBy,
        displayName: pipelineRunDisplayName,
        id: pipelineRunId,
        pipelineId: testPipeline.id,
        state: pipelineRunState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_pipeline_runs = oci.DataScience.get_pipeline_runs(compartment_id=compartment_id,
        created_by=pipeline_run_created_by,
        display_name=pipeline_run_display_name,
        id=pipeline_run_id,
        pipeline_id=test_pipeline["id"],
        state=pipeline_run_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datascience"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datascience.GetPipelineRuns(ctx, &datascience.GetPipelineRunsArgs{
    			CompartmentId: compartmentId,
    			CreatedBy:     pulumi.StringRef(pipelineRunCreatedBy),
    			DisplayName:   pulumi.StringRef(pipelineRunDisplayName),
    			Id:            pulumi.StringRef(pipelineRunId),
    			PipelineId:    pulumi.StringRef(testPipeline.Id),
    			State:         pulumi.StringRef(pipelineRunState),
    		}, 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 testPipelineRuns = Oci.DataScience.GetPipelineRuns.Invoke(new()
        {
            CompartmentId = compartmentId,
            CreatedBy = pipelineRunCreatedBy,
            DisplayName = pipelineRunDisplayName,
            Id = pipelineRunId,
            PipelineId = testPipeline.Id,
            State = pipelineRunState,
        });
    
    });
    
    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.GetPipelineRunsArgs;
    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 testPipelineRuns = DataScienceFunctions.getPipelineRuns(GetPipelineRunsArgs.builder()
                .compartmentId(compartmentId)
                .createdBy(pipelineRunCreatedBy)
                .displayName(pipelineRunDisplayName)
                .id(pipelineRunId)
                .pipelineId(testPipeline.id())
                .state(pipelineRunState)
                .build());
    
        }
    }
    
    variables:
      testPipelineRuns:
        fn::invoke:
          function: oci:DataScience:getPipelineRuns
          arguments:
            compartmentId: ${compartmentId}
            createdBy: ${pipelineRunCreatedBy}
            displayName: ${pipelineRunDisplayName}
            id: ${pipelineRunId}
            pipelineId: ${testPipeline.id}
            state: ${pipelineRunState}
    

    Using getPipelineRuns

    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 getPipelineRuns(args: GetPipelineRunsArgs, opts?: InvokeOptions): Promise<GetPipelineRunsResult>
    function getPipelineRunsOutput(args: GetPipelineRunsOutputArgs, opts?: InvokeOptions): Output<GetPipelineRunsResult>
    def get_pipeline_runs(compartment_id: Optional[str] = None,
                          created_by: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[GetPipelineRunsFilter]] = None,
                          id: Optional[str] = None,
                          pipeline_id: Optional[str] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetPipelineRunsResult
    def get_pipeline_runs_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          created_by: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPipelineRunsFilterArgs]]]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          pipeline_id: Optional[pulumi.Input[str]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetPipelineRunsResult]
    func GetPipelineRuns(ctx *Context, args *GetPipelineRunsArgs, opts ...InvokeOption) (*GetPipelineRunsResult, error)
    func GetPipelineRunsOutput(ctx *Context, args *GetPipelineRunsOutputArgs, opts ...InvokeOption) GetPipelineRunsResultOutput

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

    public static class GetPipelineRuns 
    {
        public static Task<GetPipelineRunsResult> InvokeAsync(GetPipelineRunsArgs args, InvokeOptions? opts = null)
        public static Output<GetPipelineRunsResult> Invoke(GetPipelineRunsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPipelineRunsResult> getPipelineRuns(GetPipelineRunsArgs args, InvokeOptions options)
    public static Output<GetPipelineRunsResult> getPipelineRuns(GetPipelineRunsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataScience/getPipelineRuns:getPipelineRuns
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DisplayName string
    Filter results by its user-friendly name.
    Filters List<GetPipelineRunsFilter>
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    PipelineId string
    The OCID of the pipeline.
    State string
    The current state of the PipelineRun.
    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DisplayName string
    Filter results by its user-friendly name.
    Filters []GetPipelineRunsFilter
    Id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    PipelineId string
    The OCID of the pipeline.
    State string
    The current state of the PipelineRun.
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    displayName String
    Filter results by its user-friendly name.
    filters List<GetPipelineRunsFilter>
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    pipelineId String
    The OCID of the pipeline.
    state String
    The current state of the PipelineRun.
    compartmentId string
    Filter results by the OCID of the compartment.
    createdBy string
    Filter results by the OCID of the user who created the resource.
    displayName string
    Filter results by its user-friendly name.
    filters GetPipelineRunsFilter[]
    id string
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    pipelineId string
    The OCID of the pipeline.
    state string
    The current state of the PipelineRun.
    compartment_id str
    Filter results by the OCID of the compartment.
    created_by str
    Filter results by the OCID of the user who created the resource.
    display_name str
    Filter results by its user-friendly name.
    filters Sequence[GetPipelineRunsFilter]
    id str
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    pipeline_id str
    The OCID of the pipeline.
    state str
    The current state of the PipelineRun.
    compartmentId String
    Filter results by the OCID of the compartment.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    displayName String
    Filter results by its user-friendly name.
    filters List<Property Map>
    id String
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    pipelineId String
    The OCID of the pipeline.
    state String
    The current state of the PipelineRun.

    getPipelineRuns Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    PipelineRuns List<GetPipelineRunsPipelineRun>
    The list of pipeline_runs.
    CreatedBy string
    The OCID of the user who created the pipeline run.
    DisplayName string
    A user-friendly display name for the resource.
    Filters List<GetPipelineRunsFilter>
    Id string
    The OCID of the pipeline run.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    State string
    The state of the step run.
    CompartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    PipelineRuns []GetPipelineRunsPipelineRun
    The list of pipeline_runs.
    CreatedBy string
    The OCID of the user who created the pipeline run.
    DisplayName string
    A user-friendly display name for the resource.
    Filters []GetPipelineRunsFilter
    Id string
    The OCID of the pipeline run.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    State string
    The state of the step run.
    compartmentId String
    The OCID of the compartment where you want to create the pipeline run.
    pipelineRuns List<GetPipelineRunsPipelineRun>
    The list of pipeline_runs.
    createdBy String
    The OCID of the user who created the pipeline run.
    displayName String
    A user-friendly display name for the resource.
    filters List<GetPipelineRunsFilter>
    id String
    The OCID of the pipeline run.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    state String
    The state of the step run.
    compartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    pipelineRuns GetPipelineRunsPipelineRun[]
    The list of pipeline_runs.
    createdBy string
    The OCID of the user who created the pipeline run.
    displayName string
    A user-friendly display name for the resource.
    filters GetPipelineRunsFilter[]
    id string
    The OCID of the pipeline run.
    pipelineId string
    The OCID of the pipeline for which pipeline run is created.
    state string
    The state of the step run.
    compartment_id str
    The OCID of the compartment where you want to create the pipeline run.
    pipeline_runs Sequence[GetPipelineRunsPipelineRun]
    The list of pipeline_runs.
    created_by str
    The OCID of the user who created the pipeline run.
    display_name str
    A user-friendly display name for the resource.
    filters Sequence[GetPipelineRunsFilter]
    id str
    The OCID of the pipeline run.
    pipeline_id str
    The OCID of the pipeline for which pipeline run is created.
    state str
    The state of the step run.
    compartmentId String
    The OCID of the compartment where you want to create the pipeline run.
    pipelineRuns List<Property Map>
    The list of pipeline_runs.
    createdBy String
    The OCID of the user who created the pipeline run.
    displayName String
    A user-friendly display name for the resource.
    filters List<Property Map>
    id String
    The OCID of the pipeline run.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    state String
    The state of the step run.

    Supporting Types

    GetPipelineRunsFilter

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

    GetPipelineRunsPipelineRun

    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationDetails List<GetPipelineRunsPipelineRunConfigurationDetail>
    The configuration details of a pipeline.
    ConfigurationOverrideDetails List<GetPipelineRunsPipelineRunConfigurationOverrideDetail>
    The configuration details of a pipeline.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    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"}
    DeleteRelatedJobRuns bool
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    InfrastructureConfigurationOverrideDetails List<GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail>
    The infrastructure configuration details of a pipeline or a step.
    LifecycleDetails string
    Details of the state of the step run.
    LogConfigurationOverrideDetails List<GetPipelineRunsPipelineRunLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    LogDetails List<GetPipelineRunsPipelineRunLogDetail>
    Customer logging details for pipeline run.
    OpcParentRptUrl string
    ParametersOverride Dictionary<string, string>
    Parameters override used in the pipeline run.
    PipelineId string
    The OCID of the pipeline.
    ProjectId string
    The OCID of the project to associate the pipeline run with.
    State string
    The current state of the PipelineRun.
    StepOverrideDetails List<GetPipelineRunsPipelineRunStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    StepRuns List<GetPipelineRunsPipelineRunStepRun>
    Array of StepRun object for each step.
    StorageMountConfigurationOverrideDetailsLists List<GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList>
    The storage mount override details to mount to the instance running the pipeline step.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationDetails []GetPipelineRunsPipelineRunConfigurationDetail
    The configuration details of a pipeline.
    ConfigurationOverrideDetails []GetPipelineRunsPipelineRunConfigurationOverrideDetail
    The configuration details of a pipeline.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    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"}
    DeleteRelatedJobRuns bool
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    InfrastructureConfigurationOverrideDetails []GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail
    The infrastructure configuration details of a pipeline or a step.
    LifecycleDetails string
    Details of the state of the step run.
    LogConfigurationOverrideDetails []GetPipelineRunsPipelineRunLogConfigurationOverrideDetail
    The pipeline log configuration details.
    LogDetails []GetPipelineRunsPipelineRunLogDetail
    Customer logging details for pipeline run.
    OpcParentRptUrl string
    ParametersOverride map[string]string
    Parameters override used in the pipeline run.
    PipelineId string
    The OCID of the pipeline.
    ProjectId string
    The OCID of the project to associate the pipeline run with.
    State string
    The current state of the PipelineRun.
    StepOverrideDetails []GetPipelineRunsPipelineRunStepOverrideDetail
    Array of step override details. Only Step Configuration is allowed to be overridden.
    StepRuns []GetPipelineRunsPipelineRunStepRun
    Array of StepRun object for each step.
    StorageMountConfigurationOverrideDetailsLists []GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList
    The storage mount override details to mount to the instance running the pipeline step.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationDetails List<GetPipelineRunsPipelineRunConfigurationDetail>
    The configuration details of a pipeline.
    configurationOverrideDetails List<GetPipelineRunsPipelineRunConfigurationOverrideDetail>
    The configuration details of a pipeline.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    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"}
    deleteRelatedJobRuns Boolean
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    infrastructureConfigurationOverrideDetails List<GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail>
    The infrastructure configuration details of a pipeline or a step.
    lifecycleDetails String
    Details of the state of the step run.
    logConfigurationOverrideDetails List<GetPipelineRunsPipelineRunLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    logDetails List<GetPipelineRunsPipelineRunLogDetail>
    Customer logging details for pipeline run.
    opcParentRptUrl String
    parametersOverride Map<String,String>
    Parameters override used in the pipeline run.
    pipelineId String
    The OCID of the pipeline.
    projectId String
    The OCID of the project to associate the pipeline run with.
    state String
    The current state of the PipelineRun.
    stepOverrideDetails List<GetPipelineRunsPipelineRunStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns List<GetPipelineRunsPipelineRunStepRun>
    Array of StepRun object for each step.
    storageMountConfigurationOverrideDetailsLists List<GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList>
    The storage mount override details to mount to the instance running the pipeline step.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeAccepted String
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId string
    Filter results by the OCID of the compartment.
    configurationDetails GetPipelineRunsPipelineRunConfigurationDetail[]
    The configuration details of a pipeline.
    configurationOverrideDetails GetPipelineRunsPipelineRunConfigurationOverrideDetail[]
    The configuration details of a pipeline.
    createdBy string
    Filter results by the OCID of the user who created the resource.
    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"}
    deleteRelatedJobRuns boolean
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    infrastructureConfigurationOverrideDetails GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail[]
    The infrastructure configuration details of a pipeline or a step.
    lifecycleDetails string
    Details of the state of the step run.
    logConfigurationOverrideDetails GetPipelineRunsPipelineRunLogConfigurationOverrideDetail[]
    The pipeline log configuration details.
    logDetails GetPipelineRunsPipelineRunLogDetail[]
    Customer logging details for pipeline run.
    opcParentRptUrl string
    parametersOverride {[key: string]: string}
    Parameters override used in the pipeline run.
    pipelineId string
    The OCID of the pipeline.
    projectId string
    The OCID of the project to associate the pipeline run with.
    state string
    The current state of the PipelineRun.
    stepOverrideDetails GetPipelineRunsPipelineRunStepOverrideDetail[]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns GetPipelineRunsPipelineRunStepRun[]
    Array of StepRun object for each step.
    storageMountConfigurationOverrideDetailsLists GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList[]
    The storage mount override details to mount to the instance running the pipeline step.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartment_id str
    Filter results by the OCID of the compartment.
    configuration_details Sequence[GetPipelineRunsPipelineRunConfigurationDetail]
    The configuration details of a pipeline.
    configuration_override_details Sequence[GetPipelineRunsPipelineRunConfigurationOverrideDetail]
    The configuration details of a pipeline.
    created_by str
    Filter results by the OCID of the user who created the resource.
    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"}
    delete_related_job_runs bool
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    infrastructure_configuration_override_details Sequence[GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail]
    The infrastructure configuration details of a pipeline or a step.
    lifecycle_details str
    Details of the state of the step run.
    log_configuration_override_details Sequence[GetPipelineRunsPipelineRunLogConfigurationOverrideDetail]
    The pipeline log configuration details.
    log_details Sequence[GetPipelineRunsPipelineRunLogDetail]
    Customer logging details for pipeline run.
    opc_parent_rpt_url str
    parameters_override Mapping[str, str]
    Parameters override used in the pipeline run.
    pipeline_id str
    The OCID of the pipeline.
    project_id str
    The OCID of the project to associate the pipeline run with.
    state str
    The current state of the PipelineRun.
    step_override_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetail]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    step_runs Sequence[GetPipelineRunsPipelineRunStepRun]
    Array of StepRun object for each step.
    storage_mount_configuration_override_details_lists Sequence[GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList]
    The storage mount override details to mount to the instance running the pipeline step.
    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_accepted str
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    time_finished str
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    time_started str
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    time_updated str
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId String
    Filter results by the OCID of the compartment.
    configurationDetails List<Property Map>
    The configuration details of a pipeline.
    configurationOverrideDetails List<Property Map>
    The configuration details of a pipeline.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    deleteRelatedJobRuns Boolean
    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
    Filter results by OCID. Must be an OCID of the correct type for the resource type.
    infrastructureConfigurationOverrideDetails List<Property Map>
    The infrastructure configuration details of a pipeline or a step.
    lifecycleDetails String
    Details of the state of the step run.
    logConfigurationOverrideDetails List<Property Map>
    The pipeline log configuration details.
    logDetails List<Property Map>
    Customer logging details for pipeline run.
    opcParentRptUrl String
    parametersOverride Map<String>
    Parameters override used in the pipeline run.
    pipelineId String
    The OCID of the pipeline.
    projectId String
    The OCID of the project to associate the pipeline run with.
    state String
    The current state of the PipelineRun.
    stepOverrideDetails List<Property Map>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns List<Property Map>
    Array of StepRun object for each step.
    storageMountConfigurationOverrideDetailsLists List<Property Map>
    The storage mount override details to mount to the instance running the pipeline step.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeAccepted String
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.

    GetPipelineRunsPipelineRunConfigurationDetail

    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.

    GetPipelineRunsPipelineRunConfigurationOverrideDetail

    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.

    GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail

    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    BlockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    ShapeConfigDetails List<GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ShapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    SubnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    BlockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    ShapeConfigDetails []GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ShapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    SubnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs Integer
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized String
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails List<GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId String
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs number
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail[]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    block_storage_size_in_gbs int
    The size of the block storage volume to attach to the instance.
    block_storage_size_in_gbs_parameterized str
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shape_config_details Sequence[GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shape_name str
    The shape used to launch the instance for all step runs in the pipeline.
    subnet_id str
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs Number
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized String
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId String
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.

    GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetailShapeConfigDetail

    CpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    MemoryInGbs double
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus double
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    CpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    MemoryInGbs float64
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus float64
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline String
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs Double
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Double
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpu_baseline str
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memory_in_gbs float
    The total amount of memory available to the pipeline step run instance GBs.
    memory_in_gbs_parameterized str
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus float
    The total number of OCPUs available to the pipeline step run instance.
    ocpus_parameterized str
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline String
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs Number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.

    GetPipelineRunsPipelineRunLogConfigurationOverrideDetail

    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 log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId string
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    log_id str
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.

    GetPipelineRunsPipelineRunLogDetail

    LogGroupId string
    The log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    LogGroupId string
    The log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    logGroupId String
    The log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.
    logGroupId string
    The log group id for where log objects will be for pipeline runs.
    logId string
    The log id of the log object the pipeline run logs will be shipped to.
    log_group_id str
    The log group id for where log objects will be for pipeline runs.
    log_id str
    The log id of the log object the pipeline run logs will be shipped to.
    logGroupId String
    The log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.

    GetPipelineRunsPipelineRunStepOverrideDetail

    StepConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail>
    The configuration details of a step.
    StepContainerConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail>
    Container Details for a step in pipeline.
    StepDataflowConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail>
    The configuration details of a Dataflow step.
    StepInfrastructureConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail>
    The infrastructure configuration details of a pipeline or a step.
    StepName string
    The name of the step.
    StepStorageMountConfigurationDetailsLists List<GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList>
    The storage mount details to mount to the instance running the pipeline step.
    StepConfigurationDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail
    The configuration details of a step.
    StepContainerConfigurationDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail
    Container Details for a step in pipeline.
    StepDataflowConfigurationDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail
    The configuration details of a Dataflow step.
    StepInfrastructureConfigurationDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail
    The infrastructure configuration details of a pipeline or a step.
    StepName string
    The name of the step.
    StepStorageMountConfigurationDetailsLists []GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList
    The storage mount details to mount to the instance running the pipeline step.
    stepConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail>
    The configuration details of a step.
    stepContainerConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail>
    Container Details for a step in pipeline.
    stepDataflowConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail>
    The configuration details of a Dataflow step.
    stepInfrastructureConfigurationDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail>
    The infrastructure configuration details of a pipeline or a step.
    stepName String
    The name of the step.
    stepStorageMountConfigurationDetailsLists List<GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList>
    The storage mount details to mount to the instance running the pipeline step.
    stepConfigurationDetails GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail[]
    The configuration details of a step.
    stepContainerConfigurationDetails GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail[]
    Container Details for a step in pipeline.
    stepDataflowConfigurationDetails GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail[]
    The configuration details of a Dataflow step.
    stepInfrastructureConfigurationDetails GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail[]
    The infrastructure configuration details of a pipeline or a step.
    stepName string
    The name of the step.
    stepStorageMountConfigurationDetailsLists GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList[]
    The storage mount details to mount to the instance running the pipeline step.
    step_configuration_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail]
    The configuration details of a step.
    step_container_configuration_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail]
    Container Details for a step in pipeline.
    step_dataflow_configuration_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail]
    The configuration details of a Dataflow step.
    step_infrastructure_configuration_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail]
    The infrastructure configuration details of a pipeline or a step.
    step_name str
    The name of the step.
    step_storage_mount_configuration_details_lists Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList]
    The storage mount details to mount to the instance running the pipeline step.
    stepConfigurationDetails List<Property Map>
    The configuration details of a step.
    stepContainerConfigurationDetails List<Property Map>
    Container Details for a step in pipeline.
    stepDataflowConfigurationDetails List<Property Map>
    The configuration details of a Dataflow step.
    stepInfrastructureConfigurationDetails List<Property Map>
    The infrastructure configuration details of a pipeline or a step.
    stepName String
    The name of the step.
    stepStorageMountConfigurationDetailsLists List<Property Map>
    The storage mount details to mount to the instance running the pipeline step.

    GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail

    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.

    GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail

    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

    GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail

    Configuration Dictionary<string, string>
    The Spark configuration passed to the running process.
    DriverShape string
    The VM shape for the driver.
    DriverShapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ExecutorShape string
    The VM shape for the executors.
    ExecutorShapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    LogsBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    NumExecutors int
    The number of executor VMs requested.
    WarehouseBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
    Configuration map[string]string
    The Spark configuration passed to the running process.
    DriverShape string
    The VM shape for the driver.
    DriverShapeConfigDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ExecutorShape string
    The VM shape for the executors.
    ExecutorShapeConfigDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    LogsBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    NumExecutors int
    The number of executor VMs requested.
    WarehouseBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
    configuration Map<String,String>
    The Spark configuration passed to the running process.
    driverShape String
    The VM shape for the driver.
    driverShapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    executorShape String
    The VM shape for the executors.
    executorShapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    logsBucketUri String
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    numExecutors Integer
    The number of executor VMs requested.
    warehouseBucketUri String
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
    configuration {[key: string]: string}
    The Spark configuration passed to the running process.
    driverShape string
    The VM shape for the driver.
    driverShapeConfigDetails GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail[]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    executorShape string
    The VM shape for the executors.
    executorShapeConfigDetails GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail[]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    logsBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    numExecutors number
    The number of executor VMs requested.
    warehouseBucketUri string
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
    configuration Mapping[str, str]
    The Spark configuration passed to the running process.
    driver_shape str
    The VM shape for the driver.
    driver_shape_config_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    executor_shape str
    The VM shape for the executors.
    executor_shape_config_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    logs_bucket_uri str
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    num_executors int
    The number of executor VMs requested.
    warehouse_bucket_uri str
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
    configuration Map<String>
    The Spark configuration passed to the running process.
    driverShape String
    The VM shape for the driver.
    driverShapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    executorShape String
    The VM shape for the executors.
    executorShapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    logsBucketUri String
    An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
    numExecutors Number
    The number of executor VMs requested.
    warehouseBucketUri String
    An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.

    GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail

    MemoryInGbs double
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus double
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    MemoryInGbs float64
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus float64
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs Double
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Double
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memory_in_gbs float
    The total amount of memory available to the pipeline step run instance GBs.
    memory_in_gbs_parameterized str
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus float
    The total number of OCPUs available to the pipeline step run instance.
    ocpus_parameterized str
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs Number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.

    GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail

    MemoryInGbs double
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus double
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    MemoryInGbs float64
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus float64
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs Double
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Double
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memory_in_gbs float
    The total amount of memory available to the pipeline step run instance GBs.
    memory_in_gbs_parameterized str
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus float
    The total number of OCPUs available to the pipeline step run instance.
    ocpus_parameterized str
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    memoryInGbs Number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.

    GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail

    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    BlockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    ShapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ShapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    SubnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    BlockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    ShapeConfigDetails []GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    ShapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    SubnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs Integer
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized String
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails List<GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId String
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs number
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized string
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail[]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName string
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId string
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    block_storage_size_in_gbs int
    The size of the block storage volume to attach to the instance.
    block_storage_size_in_gbs_parameterized str
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shape_config_details Sequence[GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail]
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shape_name str
    The shape used to launch the instance for all step runs in the pipeline.
    subnet_id str
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
    blockStorageSizeInGbs Number
    The size of the block storage volume to attach to the instance.
    blockStorageSizeInGbsParameterized String
    The size of the block storage volume to attach to the pipeline step run instance specified as a parameter. This overrides the blockStorageSizeInGBs value. The request will fail if the parameters used are null or invalid.
    shapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.
    subnetId String
    The subnet to create a secondary vnic in to attach to the instance running the pipeline step.

    GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetailShapeConfigDetail

    CpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    MemoryInGbs double
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus double
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    CpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    MemoryInGbs float64
    The total amount of memory available to the pipeline step run instance GBs.
    MemoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    Ocpus float64
    The total number of OCPUs available to the pipeline step run instance.
    OcpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline String
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs Double
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Double
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline string
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized string
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized string
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpu_baseline str
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memory_in_gbs float
    The total amount of memory available to the pipeline step run instance GBs.
    memory_in_gbs_parameterized str
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus float
    The total number of OCPUs available to the pipeline step run instance.
    ocpus_parameterized str
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.
    cpuBaseline String
    The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
    memoryInGbs Number
    The total amount of memory available to the pipeline step run instance GBs.
    memoryInGbsParameterized String
    The total amount of memory available to the pipeline step run instance in GBs specified as a parameter. This overrides the memoryInGBs value. The request will fail if the parameters used are null or invalid.
    ocpus Number
    The total number of OCPUs available to the pipeline step run instance.
    ocpusParameterized String
    The total number of OCPUs available to the pipeline step run instance specified as a parameter. This overrides the ocpus value. The request will fail if the parameters used are null or invalid.

    GetPipelineRunsPipelineRunStepOverrideDetailStepStorageMountConfigurationDetailsList

    Bucket string
    The object storage bucket
    DestinationDirectoryName string
    The local directory name to be mounted
    DestinationPath string
    The local path of the mounted directory, excluding directory name.
    ExportId string
    OCID of the export
    MountTargetId string
    OCID of the mount target
    Namespace string
    The object storage namespace
    Prefix string
    Prefix in the bucket to mount
    StorageType string
    The type of storage.
    Bucket string
    The object storage bucket
    DestinationDirectoryName string
    The local directory name to be mounted
    DestinationPath string
    The local path of the mounted directory, excluding directory name.
    ExportId string
    OCID of the export
    MountTargetId string
    OCID of the mount target
    Namespace string
    The object storage namespace
    Prefix string
    Prefix in the bucket to mount
    StorageType string
    The type of storage.
    bucket String
    The object storage bucket
    destinationDirectoryName String
    The local directory name to be mounted
    destinationPath String
    The local path of the mounted directory, excluding directory name.
    exportId String
    OCID of the export
    mountTargetId String
    OCID of the mount target
    namespace String
    The object storage namespace
    prefix String
    Prefix in the bucket to mount
    storageType String
    The type of storage.
    bucket string
    The object storage bucket
    destinationDirectoryName string
    The local directory name to be mounted
    destinationPath string
    The local path of the mounted directory, excluding directory name.
    exportId string
    OCID of the export
    mountTargetId string
    OCID of the mount target
    namespace string
    The object storage namespace
    prefix string
    Prefix in the bucket to mount
    storageType string
    The type of storage.
    bucket str
    The object storage bucket
    destination_directory_name str
    The local directory name to be mounted
    destination_path str
    The local path of the mounted directory, excluding directory name.
    export_id str
    OCID of the export
    mount_target_id str
    OCID of the mount target
    namespace str
    The object storage namespace
    prefix str
    Prefix in the bucket to mount
    storage_type str
    The type of storage.
    bucket String
    The object storage bucket
    destinationDirectoryName String
    The local directory name to be mounted
    destinationPath String
    The local path of the mounted directory, excluding directory name.
    exportId String
    OCID of the export
    mountTargetId String
    OCID of the mount target
    namespace String
    The object storage namespace
    prefix String
    Prefix in the bucket to mount
    storageType String
    The type of storage.

    GetPipelineRunsPipelineRunStepRun

    DataflowRunId string
    The OCID of the dataflow run triggered for this step run.
    JobRunId string
    The OCID of the job run triggered for this step run.
    LifecycleDetails string
    Details of the state of the step run.
    State string
    The current state of the PipelineRun.
    StepName string
    The name of the step.
    StepRunName string
    Name used when creating the steprun.
    StepType string
    The type of step.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    DataflowRunId string
    The OCID of the dataflow run triggered for this step run.
    JobRunId string
    The OCID of the job run triggered for this step run.
    LifecycleDetails string
    Details of the state of the step run.
    State string
    The current state of the PipelineRun.
    StepName string
    The name of the step.
    StepRunName string
    Name used when creating the steprun.
    StepType string
    The type of step.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    dataflowRunId String
    The OCID of the dataflow run triggered for this step run.
    jobRunId String
    The OCID of the job run triggered for this step run.
    lifecycleDetails String
    Details of the state of the step run.
    state String
    The current state of the PipelineRun.
    stepName String
    The name of the step.
    stepRunName String
    Name used when creating the steprun.
    stepType String
    The type of step.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    dataflowRunId string
    The OCID of the dataflow run triggered for this step run.
    jobRunId string
    The OCID of the job run triggered for this step run.
    lifecycleDetails string
    Details of the state of the step run.
    state string
    The current state of the PipelineRun.
    stepName string
    The name of the step.
    stepRunName string
    Name used when creating the steprun.
    stepType string
    The type of step.
    timeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    dataflow_run_id str
    The OCID of the dataflow run triggered for this step run.
    job_run_id str
    The OCID of the job run triggered for this step run.
    lifecycle_details str
    Details of the state of the step run.
    state str
    The current state of the PipelineRun.
    step_name str
    The name of the step.
    step_run_name str
    Name used when creating the steprun.
    step_type str
    The type of step.
    time_finished str
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    time_started str
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    dataflowRunId String
    The OCID of the dataflow run triggered for this step run.
    jobRunId String
    The OCID of the job run triggered for this step run.
    lifecycleDetails String
    Details of the state of the step run.
    state String
    The current state of the PipelineRun.
    stepName String
    The name of the step.
    stepRunName String
    Name used when creating the steprun.
    stepType String
    The type of step.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.

    GetPipelineRunsPipelineRunStorageMountConfigurationOverrideDetailsList

    Bucket string
    The object storage bucket
    DestinationDirectoryName string
    The local directory name to be mounted
    DestinationPath string
    The local path of the mounted directory, excluding directory name.
    ExportId string
    OCID of the export
    MountTargetId string
    OCID of the mount target
    Namespace string
    The object storage namespace
    Prefix string
    Prefix in the bucket to mount
    StorageType string
    The type of storage.
    Bucket string
    The object storage bucket
    DestinationDirectoryName string
    The local directory name to be mounted
    DestinationPath string
    The local path of the mounted directory, excluding directory name.
    ExportId string
    OCID of the export
    MountTargetId string
    OCID of the mount target
    Namespace string
    The object storage namespace
    Prefix string
    Prefix in the bucket to mount
    StorageType string
    The type of storage.
    bucket String
    The object storage bucket
    destinationDirectoryName String
    The local directory name to be mounted
    destinationPath String
    The local path of the mounted directory, excluding directory name.
    exportId String
    OCID of the export
    mountTargetId String
    OCID of the mount target
    namespace String
    The object storage namespace
    prefix String
    Prefix in the bucket to mount
    storageType String
    The type of storage.
    bucket string
    The object storage bucket
    destinationDirectoryName string
    The local directory name to be mounted
    destinationPath string
    The local path of the mounted directory, excluding directory name.
    exportId string
    OCID of the export
    mountTargetId string
    OCID of the mount target
    namespace string
    The object storage namespace
    prefix string
    Prefix in the bucket to mount
    storageType string
    The type of storage.
    bucket str
    The object storage bucket
    destination_directory_name str
    The local directory name to be mounted
    destination_path str
    The local path of the mounted directory, excluding directory name.
    export_id str
    OCID of the export
    mount_target_id str
    OCID of the mount target
    namespace str
    The object storage namespace
    prefix str
    Prefix in the bucket to mount
    storage_type str
    The type of storage.
    bucket String
    The object storage bucket
    destinationDirectoryName String
    The local directory name to be mounted
    destinationPath String
    The local path of the mounted directory, excluding directory name.
    exportId String
    OCID of the export
    mountTargetId String
    OCID of the mount target
    namespace String
    The object storage namespace
    prefix String
    Prefix in the bucket to mount
    storageType String
    The type of storage.

    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 v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate