Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.DataScience.getPipelineRuns
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 dictionaryThe 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<GetPipeline Runs Filter> 
- 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
[]GetPipeline Runs Filter 
- 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<GetPipeline Runs Filter> 
- 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
GetPipeline Runs Filter[] 
- 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[GetPipeline Runs Filter] 
- 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<GetPipeline Runs Pipeline Run> 
- 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<GetPipeline Runs Filter> 
- 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 []GetPipeline Runs Pipeline Run 
- 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
[]GetPipeline Runs Filter 
- 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<GetPipeline Runs Pipeline Run> 
- 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<GetPipeline Runs Filter> 
- 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 GetPipeline Runs Pipeline Run[] 
- 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
GetPipeline Runs Filter[] 
- 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[GetPipeline Runs Pipeline Run] 
- 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[GetPipeline Runs Filter] 
- 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   
GetPipelineRunsPipelineRun    
- CompartmentId string
- Filter results by the OCID of the compartment.
- ConfigurationDetails List<GetPipeline Runs Pipeline Run Configuration Detail> 
- The configuration details of a pipeline.
- ConfigurationOverride List<GetDetails Pipeline Runs Pipeline Run Configuration Override Detail> 
- The configuration details of a pipeline.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- DisplayName string
- Filter results by its user-friendly name.
- 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.
- InfrastructureConfiguration List<GetOverride Details Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail> 
- The infrastructure configuration details of a pipeline or a step.
- LifecycleDetails string
- Details of the state of the step run.
- LogConfiguration List<GetOverride Details Pipeline Runs Pipeline Run Log Configuration Override Detail> 
- The pipeline log configuration details.
- LogDetails List<GetPipeline Runs Pipeline Run Log Detail> 
- Customer logging details for pipeline run.
- OpcParent stringRpt Url 
- 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.
- StepOverride List<GetDetails Pipeline Runs Pipeline Run Step Override Detail> 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- StepRuns List<GetPipeline Runs Pipeline Run Step Run> 
- Array of StepRun object for each step.
- 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 []GetPipeline Runs Pipeline Run Configuration Detail 
- The configuration details of a pipeline.
- ConfigurationOverride []GetDetails Pipeline Runs Pipeline Run Configuration Override Detail 
- The configuration details of a pipeline.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- DisplayName string
- Filter results by its user-friendly name.
- 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.
- InfrastructureConfiguration []GetOverride Details Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail 
- The infrastructure configuration details of a pipeline or a step.
- LifecycleDetails string
- Details of the state of the step run.
- LogConfiguration []GetOverride Details Pipeline Runs Pipeline Run Log Configuration Override Detail 
- The pipeline log configuration details.
- LogDetails []GetPipeline Runs Pipeline Run Log Detail 
- Customer logging details for pipeline run.
- OpcParent stringRpt Url 
- 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.
- StepOverride []GetDetails Pipeline Runs Pipeline Run Step Override Detail 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- StepRuns []GetPipeline Runs Pipeline Run Step Run 
- Array of StepRun object for each step.
- 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<GetPipeline Runs Pipeline Run Configuration Detail> 
- The configuration details of a pipeline.
- configurationOverride List<GetDetails Pipeline Runs Pipeline Run Configuration Override Detail> 
- The configuration details of a pipeline.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Boolean
- displayName String
- Filter results by its user-friendly name.
- 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.
- infrastructureConfiguration List<GetOverride Details Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail> 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails String
- Details of the state of the step run.
- logConfiguration List<GetOverride Details Pipeline Runs Pipeline Run Log Configuration Override Detail> 
- The pipeline log configuration details.
- logDetails List<GetPipeline Runs Pipeline Run Log Detail> 
- Customer logging details for pipeline run.
- opcParent StringRpt Url 
- 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.
- stepOverride List<GetDetails Pipeline Runs Pipeline Run Step Override Detail> 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- stepRuns List<GetPipeline Runs Pipeline Run Step Run> 
- Array of StepRun object for each step.
- 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 GetPipeline Runs Pipeline Run Configuration Detail[] 
- The configuration details of a pipeline.
- configurationOverride GetDetails Pipeline Runs Pipeline Run Configuration Override Detail[] 
- The configuration details of a pipeline.
- createdBy string
- Filter results by the OCID of the user who created the resource.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- boolean
- displayName string
- Filter results by its user-friendly name.
- {[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.
- infrastructureConfiguration GetOverride Details Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail[] 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails string
- Details of the state of the step run.
- logConfiguration GetOverride Details Pipeline Runs Pipeline Run Log Configuration Override Detail[] 
- The pipeline log configuration details.
- logDetails GetPipeline Runs Pipeline Run Log Detail[] 
- Customer logging details for pipeline run.
- opcParent stringRpt Url 
- 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.
- stepOverride GetDetails Pipeline Runs Pipeline Run Step Override Detail[] 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- stepRuns GetPipeline Runs Pipeline Run Step Run[] 
- Array of StepRun object for each step.
- {[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[GetPipeline Runs Pipeline Run Configuration Detail] 
- The configuration details of a pipeline.
- configuration_override_ Sequence[Getdetails Pipeline Runs Pipeline Run Configuration Override Detail] 
- The configuration details of a pipeline.
- created_by str
- Filter results by the OCID of the user who created the resource.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- display_name str
- Filter results by its user-friendly name.
- 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_ Sequence[Getoverride_ details Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail] 
- The infrastructure configuration details of a pipeline or a step.
- lifecycle_details str
- Details of the state of the step run.
- log_configuration_ Sequence[Getoverride_ details Pipeline Runs Pipeline Run Log Configuration Override Detail] 
- The pipeline log configuration details.
- log_details Sequence[GetPipeline Runs Pipeline Run Log Detail] 
- Customer logging details for pipeline run.
- opc_parent_ strrpt_ url 
- 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_ Sequence[Getdetails Pipeline Runs Pipeline Run Step Override Detail] 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- step_runs Sequence[GetPipeline Runs Pipeline Run Step Run] 
- Array of StepRun object for each step.
- 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.
- configurationOverride List<Property Map>Details 
- The configuration details of a pipeline.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Boolean
- displayName String
- Filter results by its user-friendly name.
- 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.
- infrastructureConfiguration List<Property Map>Override Details 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails String
- Details of the state of the step run.
- logConfiguration List<Property Map>Override Details 
- The pipeline log configuration details.
- logDetails List<Property Map>
- Customer logging details for pipeline run.
- opcParent StringRpt Url 
- 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.
- stepOverride List<Property Map>Details 
- Array of step override details. Only Step Configuration is allowed to be overridden.
- stepRuns List<Property Map>
- Array of StepRun object for each step.
- 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      
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables Dictionary<string, string>
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables map[string]string
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String,String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
- commandLine stringArguments 
- The command line arguments to set for step.
- environmentVariables {[key: string]: string}
- Environment variables to set for step.
- maximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- type string
- The type of pipeline.
- command_line_ strarguments 
- The command line arguments to set for step.
- environment_variables Mapping[str, str]
- Environment variables to set for step.
- maximum_runtime_ strin_ minutes 
- A time bound for the execution of the step.
- type str
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
GetPipelineRunsPipelineRunConfigurationOverrideDetail       
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables Dictionary<string, string>
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables map[string]string
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String,String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
- commandLine stringArguments 
- The command line arguments to set for step.
- environmentVariables {[key: string]: string}
- Environment variables to set for step.
- maximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- type string
- The type of pipeline.
- command_line_ strarguments 
- The command line arguments to set for step.
- environment_variables Mapping[str, str]
- Environment variables to set for step.
- maximum_runtime_ strin_ minutes 
- A time bound for the execution of the step.
- type str
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
GetPipelineRunsPipelineRunInfrastructureConfigurationOverrideDetail        
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig List<GetDetails Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail Shape Config Detail> 
- 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.
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig []GetDetails Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail Shape Config Detail 
- 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.
- blockStorage IntegerSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<GetDetails Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail Shape Config Detail> 
- 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.
- blockStorage numberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig GetDetails Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail Shape Config Detail[] 
- 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_ intsize_ in_ gbs 
- The size of the block storage volume to attach to the instance.
- shape_config_ Sequence[Getdetails Pipeline Runs Pipeline Run Infrastructure Configuration Override Detail Shape Config Detail] 
- 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.
- blockStorage NumberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<Property Map>Details 
- 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           
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelineRunsPipelineRunLogConfigurationOverrideDetail        
- EnableAuto boolLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- EnableLogging bool
- If customer logging is enabled for pipeline.
- LogGroup stringId 
- 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.
- EnableAuto boolLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- EnableLogging bool
- If customer logging is enabled for pipeline.
- LogGroup stringId 
- 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.
- enableAuto BooleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging Boolean
- If customer logging is enabled for pipeline.
- logGroup StringId 
- 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.
- enableAuto booleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging boolean
- If customer logging is enabled for pipeline.
- logGroup stringId 
- 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_ boollog_ creation 
- 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_ strid 
- 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.
- enableAuto BooleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging Boolean
- If customer logging is enabled for pipeline.
- logGroup StringId 
- 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      
- LogGroup stringId 
- 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.
- LogGroup stringId 
- 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.
- logGroup StringId 
- 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.
- logGroup stringId 
- 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_ strid 
- 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.
- logGroup StringId 
- 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       
- StepConfiguration List<GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Configuration Detail> 
- The configuration details of a step.
- StepContainer List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Container Configuration Detail> 
- Container Details for a step in pipeline.
- StepDataflow List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail> 
- The configuration details of a Dataflow step.
- StepInfrastructure List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- StepName string
- The name of the step.
- StepConfiguration []GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Configuration Detail 
- The configuration details of a step.
- StepContainer []GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Container Configuration Detail 
- Container Details for a step in pipeline.
- StepDataflow []GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail 
- The configuration details of a Dataflow step.
- StepInfrastructure []GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail 
- The infrastructure configuration details of a pipeline or a step.
- StepName string
- The name of the step.
- stepConfiguration List<GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Configuration Detail> 
- The configuration details of a step.
- stepContainer List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Container Configuration Detail> 
- Container Details for a step in pipeline.
- stepDataflow List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail> 
- The configuration details of a Dataflow step.
- stepInfrastructure List<GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- stepName String
- The name of the step.
- stepConfiguration GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Configuration Detail[] 
- The configuration details of a step.
- stepContainer GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Container Configuration Detail[] 
- Container Details for a step in pipeline.
- stepDataflow GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail[] 
- The configuration details of a Dataflow step.
- stepInfrastructure GetConfiguration Details Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail[] 
- The infrastructure configuration details of a pipeline or a step.
- stepName string
- The name of the step.
- step_configuration_ Sequence[Getdetails Pipeline Runs Pipeline Run Step Override Detail Step Configuration Detail] 
- The configuration details of a step.
- step_container_ Sequence[Getconfiguration_ details Pipeline Runs Pipeline Run Step Override Detail Step Container Configuration Detail] 
- Container Details for a step in pipeline.
- step_dataflow_ Sequence[Getconfiguration_ details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail] 
- The configuration details of a Dataflow step.
- step_infrastructure_ Sequence[Getconfiguration_ details Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail] 
- The infrastructure configuration details of a pipeline or a step.
- step_name str
- The name of the step.
- stepConfiguration List<Property Map>Details 
- The configuration details of a step.
- stepContainer List<Property Map>Configuration Details 
- Container Details for a step in pipeline.
- stepDataflow List<Property Map>Configuration Details 
- The configuration details of a Dataflow step.
- stepInfrastructure List<Property Map>Configuration Details 
- The infrastructure configuration details of a pipeline or a step.
- stepName String
- The name of the step.
GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail          
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables Dictionary<string, string>
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables map[string]string
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String,String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- commandLine stringArguments 
- The command line arguments to set for step.
- environmentVariables {[key: string]: string}
- Environment variables to set for step.
- maximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- command_line_ strarguments 
- The command line arguments to set for step.
- environment_variables Mapping[str, str]
- Environment variables to set for step.
- maximum_runtime_ strin_ minutes 
- A time bound for the execution of the step.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail           
- Cmds List<string>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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
- ImageSignature stringId 
- OCID of the container image signature
- Cmds []string
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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
- ImageSignature stringId 
- OCID of the container image signature
- cmds List<String>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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
- imageSignature StringId 
- OCID of the container image signature
- cmds string[]
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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
- imageSignature stringId 
- OCID of the container image signature
- cmds Sequence[str]
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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_ strid 
- OCID of the container image signature
- cmds List<String>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust 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 CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract 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
- imageSignature StringId 
- 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.
- DriverShape List<GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Driver Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ExecutorShape string
- The VM shape for the executors.
- ExecutorShape List<GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Executor Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- LogsBucket stringUri 
- 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.
- WarehouseBucket stringUri 
- 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.
- DriverShape []GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Driver Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ExecutorShape string
- The VM shape for the executors.
- ExecutorShape []GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Executor Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- LogsBucket stringUri 
- 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.
- WarehouseBucket stringUri 
- 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.
- driverShape List<GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Driver Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape String
- The VM shape for the executors.
- executorShape List<GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Executor Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket StringUri 
- 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.
- warehouseBucket StringUri 
- 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.
- driverShape GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Driver Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape string
- The VM shape for the executors.
- executorShape GetConfig Details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Executor Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket stringUri 
- 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.
- warehouseBucket stringUri 
- 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_ Sequence[Getconfig_ details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Driver Shape Config Detail] 
- 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_ Sequence[Getconfig_ details Pipeline Runs Pipeline Run Step Override Detail Step Dataflow Configuration Detail Executor Shape Config Detail] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs_bucket_ struri 
- 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_ struri 
- 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.
- driverShape List<Property Map>Config Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape String
- The VM shape for the executors.
- executorShape List<Property Map>Config Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket StringUri 
- 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.
- warehouseBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail               
- 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.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail               
- 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.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- 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.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelineRunsPipelineRunStepOverrideDetailStepInfrastructureConfigurationDetail           
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig List<GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail Shape Config Detail> 
- 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.
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig []GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail Shape Config Detail 
- 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.
- blockStorage IntegerSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail Shape Config Detail> 
- 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.
- blockStorage numberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig GetDetails Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail Shape Config Detail[] 
- 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_ intsize_ in_ gbs 
- The size of the block storage volume to attach to the instance.
- shape_config_ Sequence[Getdetails Pipeline Runs Pipeline Run Step Override Detail Step Infrastructure Configuration Detail Shape Config Detail] 
- 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.
- blockStorage NumberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<Property Map>Details 
- 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              
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelineRunsPipelineRunStepRun      
- DataflowRun stringId 
- The OCID of the dataflow run triggered for this step run.
- JobRun stringId 
- 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.
- 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.
- DataflowRun stringId 
- The OCID of the dataflow run triggered for this step run.
- JobRun stringId 
- 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.
- 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.
- dataflowRun StringId 
- The OCID of the dataflow run triggered for this step run.
- jobRun StringId 
- 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.
- 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.
- dataflowRun stringId 
- The OCID of the dataflow run triggered for this step run.
- jobRun stringId 
- 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.
- 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_ strid 
- The OCID of the dataflow run triggered for this step run.
- job_run_ strid 
- 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_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.
- dataflowRun StringId 
- The OCID of the dataflow run triggered for this step run.
- jobRun StringId 
- 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.
- 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.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
