Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi
oci.DataScience.getPipelineRun
Explore with Pulumi AI
This data source provides details about a specific Pipeline Run resource in Oracle Cloud Infrastructure Data Science service.
Gets a PipelineRun by identifier.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPipelineRun = oci.DataScience.getPipelineRun({
    pipelineRunId: testPipelineRunOciDatasciencePipelineRun.id,
});
import pulumi
import pulumi_oci as oci
test_pipeline_run = oci.DataScience.get_pipeline_run(pipeline_run_id=test_pipeline_run_oci_datascience_pipeline_run["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datascience.GetPipelineRun(ctx, &datascience.GetPipelineRunArgs{
			PipelineRunId: testPipelineRunOciDatasciencePipelineRun.Id,
		}, 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 testPipelineRun = Oci.DataScience.GetPipelineRun.Invoke(new()
    {
        PipelineRunId = testPipelineRunOciDatasciencePipelineRun.Id,
    });
});
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.GetPipelineRunArgs;
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 testPipelineRun = DataScienceFunctions.getPipelineRun(GetPipelineRunArgs.builder()
            .pipelineRunId(testPipelineRunOciDatasciencePipelineRun.id())
            .build());
    }
}
variables:
  testPipelineRun:
    fn::invoke:
      function: oci:DataScience:getPipelineRun
      arguments:
        pipelineRunId: ${testPipelineRunOciDatasciencePipelineRun.id}
Using getPipelineRun
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 getPipelineRun(args: GetPipelineRunArgs, opts?: InvokeOptions): Promise<GetPipelineRunResult>
function getPipelineRunOutput(args: GetPipelineRunOutputArgs, opts?: InvokeOptions): Output<GetPipelineRunResult>def get_pipeline_run(pipeline_run_id: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetPipelineRunResult
def get_pipeline_run_output(pipeline_run_id: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetPipelineRunResult]func GetPipelineRun(ctx *Context, args *GetPipelineRunArgs, opts ...InvokeOption) (*GetPipelineRunResult, error)
func GetPipelineRunOutput(ctx *Context, args *GetPipelineRunOutputArgs, opts ...InvokeOption) GetPipelineRunResultOutput> Note: This function is named GetPipelineRun in the Go SDK.
public static class GetPipelineRun 
{
    public static Task<GetPipelineRunResult> InvokeAsync(GetPipelineRunArgs args, InvokeOptions? opts = null)
    public static Output<GetPipelineRunResult> Invoke(GetPipelineRunInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPipelineRunResult> getPipelineRun(GetPipelineRunArgs args, InvokeOptions options)
public static Output<GetPipelineRunResult> getPipelineRun(GetPipelineRunArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataScience/getPipelineRun:getPipelineRun
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Pipeline
Run stringId  - The OCID of the pipeline run.
 
- Pipeline
Run stringId  - The OCID of the pipeline run.
 
- pipeline
Run StringId  - The OCID of the pipeline run.
 
- pipeline
Run stringId  - The OCID of the pipeline run.
 
- pipeline_
run_ strid  - The OCID of the pipeline run.
 
- pipeline
Run StringId  - The OCID of the pipeline run.
 
getPipelineRun Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment where you want to create the pipeline run.
 - Configuration
Details List<GetPipeline Run Configuration Detail>  - The configuration details of a pipeline.
 - Configuration
Override List<GetDetails Pipeline Run Configuration Override Detail>  - The configuration details of a pipeline.
 - Created
By string - The OCID of the user who created the pipeline run.
 - 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
 - If set to true will delete related job runs.
 - Display
Name string - A user-friendly display name for the resource.
 - 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
 - The OCID of the pipeline run.
 - Lifecycle
Details string - Details of the state of the step run.
 - Log
Configuration List<GetOverride Details Pipeline Run Log Configuration Override Detail>  - The pipeline log configuration details.
 - Log
Details List<GetPipeline Run Log Detail>  - Customer logging details for pipeline run.
 - Opc
Parent stringRpt Url  - Pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
 - Pipeline
Run stringId  - Project
Id string - The OCID of the project to associate the pipeline run with.
 - State string
 - The state of the step run.
 - Step
Override List<GetDetails Pipeline Run Step Override Detail>  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - Step
Runs List<GetPipeline 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"} - Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
 - Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 - Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
 
- Compartment
Id string - The OCID of the compartment where you want to create the pipeline run.
 - Configuration
Details []GetPipeline Run Configuration Detail  - The configuration details of a pipeline.
 - Configuration
Override []GetDetails Pipeline Run Configuration Override Detail  - The configuration details of a pipeline.
 - Created
By string - The OCID of the user who created the pipeline run.
 - 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
 - If set to true will delete related job runs.
 - Display
Name string - A user-friendly display name for the resource.
 - 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
 - The OCID of the pipeline run.
 - Lifecycle
Details string - Details of the state of the step run.
 - Log
Configuration []GetOverride Details Pipeline Run Log Configuration Override Detail  - The pipeline log configuration details.
 - Log
Details []GetPipeline Run Log Detail  - Customer logging details for pipeline run.
 - Opc
Parent stringRpt Url  - Pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
 - Pipeline
Run stringId  - Project
Id string - The OCID of the project to associate the pipeline run with.
 - State string
 - The state of the step run.
 - Step
Override []GetDetails Pipeline Run Step Override Detail  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - Step
Runs []GetPipeline 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"} - Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
 - Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 - Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
 
- compartment
Id String - The OCID of the compartment where you want to create the pipeline run.
 - configuration
Details List<GetPipeline Run Configuration Detail>  - The configuration details of a pipeline.
 - configuration
Override List<GetDetails Pipeline Run Configuration Override Detail>  - The configuration details of a pipeline.
 - created
By String - The OCID of the user who created the pipeline run.
 - 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
 - If set to true will delete related job runs.
 - display
Name String - A user-friendly display name for the resource.
 - 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
 - The OCID of the pipeline run.
 - lifecycle
Details String - Details of the state of the step run.
 - log
Configuration List<GetOverride Details Pipeline Run Log Configuration Override Detail>  - The pipeline log configuration details.
 - log
Details List<GetPipeline Run Log Detail>  - Customer logging details for pipeline run.
 - opc
Parent StringRpt Url  - pipeline
Id String - The OCID of the pipeline for which pipeline run is created.
 - pipeline
Run StringId  - project
Id String - The OCID of the project to associate the pipeline run with.
 - state String
 - The state of the step run.
 - step
Override List<GetDetails Pipeline Run Step Override Detail>  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - step
Runs List<GetPipeline 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"} - time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
 - time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 - time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
 
- compartment
Id string - The OCID of the compartment where you want to create the pipeline run.
 - configuration
Details GetPipeline Run Configuration Detail[]  - The configuration details of a pipeline.
 - configuration
Override GetDetails Pipeline Run Configuration Override Detail[]  - The configuration details of a pipeline.
 - created
By string - The OCID of the user who created the pipeline run.
 - {[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
 - If set to true will delete related job runs.
 - display
Name string - A user-friendly display name for the resource.
 - {[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
 - The OCID of the pipeline run.
 - lifecycle
Details string - Details of the state of the step run.
 - log
Configuration GetOverride Details Pipeline Run Log Configuration Override Detail[]  - The pipeline log configuration details.
 - log
Details GetPipeline Run Log Detail[]  - Customer logging details for pipeline run.
 - opc
Parent stringRpt Url  - pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
 - pipeline
Run stringId  - project
Id string - The OCID of the project to associate the pipeline run with.
 - state string
 - The state of the step run.
 - step
Override GetDetails Pipeline Run Step Override Detail[]  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - step
Runs GetPipeline 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"} - time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
 - time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 - time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
 
- compartment_
id str - The OCID of the compartment where you want to create the pipeline run.
 - configuration_
details Sequence[datascience.Get Pipeline Run Configuration Detail]  - The configuration details of a pipeline.
 - configuration_
override_ Sequence[datascience.details Get Pipeline Run Configuration Override Detail]  - The configuration details of a pipeline.
 - created_
by str - The OCID of the user who created the pipeline run.
 - 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
 - If set to true will delete related job runs.
 - display_
name str - A user-friendly display name for the resource.
 - 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
 - The OCID of the pipeline run.
 - lifecycle_
details str - Details of the state of the step run.
 - log_
configuration_ Sequence[datascience.override_ details Get Pipeline Run Log Configuration Override Detail]  - The pipeline log configuration details.
 - log_
details Sequence[datascience.Get Pipeline Run Log Detail]  - Customer logging details for pipeline run.
 - opc_
parent_ strrpt_ url  - pipeline_
id str - The OCID of the pipeline for which pipeline run is created.
 - pipeline_
run_ strid  - project_
id str - The OCID of the project to associate the pipeline run with.
 - state str
 - The state of the step run.
 - step_
override_ Sequence[datascience.details Get Pipeline Run Step Override Detail]  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - step_
runs Sequence[datascience.Get 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.
 
- compartment
Id String - The OCID of the compartment where you want to create the pipeline run.
 - configuration
Details List<Property Map> - The configuration details of a pipeline.
 - configuration
Override List<Property Map>Details  - The configuration details of a pipeline.
 - created
By String - The OCID of the user who created the pipeline run.
 - Map<String>
 - Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: 
{"Operations.CostCenter": "42"} - Boolean
 - If set to true will delete related job runs.
 - display
Name String - A user-friendly display name for the resource.
 - 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
 - The OCID of the pipeline run.
 - lifecycle
Details String - Details of the state of the step run.
 - log
Configuration List<Property Map>Override Details  - The pipeline log configuration details.
 - log
Details List<Property Map> - Customer logging details for pipeline run.
 - opc
Parent StringRpt Url  - pipeline
Id String - The OCID of the pipeline for which pipeline run is created.
 - pipeline
Run StringId  - project
Id String - The OCID of the project to associate the pipeline run with.
 - state String
 - The state of the step run.
 - step
Override List<Property Map>Details  - Array of step override details. Only Step Configuration is allowed to be overridden.
 - step
Runs 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"} - time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
 - time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 - time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
 
Supporting Types
GetPipelineRunConfigurationDetail    
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables Dictionary<string, string> - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 - Type string
 - The type of pipeline.
 
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables map[string]string - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 - Type string
 - The type of pipeline.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String,String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 - type String
 - The type of pipeline.
 
- command
Line stringArguments  - The command line arguments to set for step.
 - environment
Variables {[key: string]: string} - Environment variables to set for step.
 - maximum
Runtime 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.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 - type String
 - The type of pipeline.
 
GetPipelineRunConfigurationOverrideDetail     
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables Dictionary<string, string> - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 - Type string
 - The type of pipeline.
 
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables map[string]string - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 - Type string
 - The type of pipeline.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String,String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 - type String
 - The type of pipeline.
 
- command
Line stringArguments  - The command line arguments to set for step.
 - environment
Variables {[key: string]: string} - Environment variables to set for step.
 - maximum
Runtime 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.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 - type String
 - The type of pipeline.
 
GetPipelineRunLogConfigurationOverrideDetail      
- 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 stringId  - The log group id for where log objects will be for pipeline runs.
 - Log
Id 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 stringId  - The log group id for where log objects will be for pipeline runs.
 - Log
Id string - The log id of the log object the pipeline run logs will be shipped to.
 
- enable
Auto BooleanLog Creation  - If automatic on-behalf-of log object creation is enabled for pipeline runs.
 - enable
Logging Boolean - If customer logging is enabled for pipeline.
 - log
Group StringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id String - The log id of the log object the pipeline run logs will be shipped to.
 
- enable
Auto booleanLog Creation  - If automatic on-behalf-of log object creation is enabled for pipeline runs.
 - enable
Logging boolean - If customer logging is enabled for pipeline.
 - log
Group stringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id 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.
 
- enable
Auto BooleanLog Creation  - If automatic on-behalf-of log object creation is enabled for pipeline runs.
 - enable
Logging Boolean - If customer logging is enabled for pipeline.
 - log
Group StringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id String - The log id of the log object the pipeline run logs will be shipped to.
 
GetPipelineRunLogDetail    
- Log
Group stringId  - The log group id for where log objects will be for pipeline runs.
 - Log
Id string - The log id of the log object the pipeline run logs will be shipped to.
 
- Log
Group stringId  - The log group id for where log objects will be for pipeline runs.
 - Log
Id string - The log id of the log object the pipeline run logs will be shipped to.
 
- log
Group StringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id String - The log id of the log object the pipeline run logs will be shipped to.
 
- log
Group stringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id 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.
 
- log
Group StringId  - The log group id for where log objects will be for pipeline runs.
 - log
Id String - The log id of the log object the pipeline run logs will be shipped to.
 
GetPipelineRunStepOverrideDetail     
- Step
Configuration List<GetDetails Pipeline Run Step Override Detail Step Configuration Detail>  - The configuration details of a step.
 - Step
Container List<GetConfiguration Details Pipeline Run Step Override Detail Step Container Configuration Detail>  - Container Details for a step in pipeline.
 - Step
Dataflow List<GetConfiguration Details Pipeline Run Step Override Detail Step Dataflow Configuration Detail>  - The configuration details of a Dataflow step.
 - Step
Name string - The name of the step.
 
- Step
Configuration []GetDetails Pipeline Run Step Override Detail Step Configuration Detail  - The configuration details of a step.
 - Step
Container []GetConfiguration Details Pipeline Run Step Override Detail Step Container Configuration Detail  - Container Details for a step in pipeline.
 - Step
Dataflow []GetConfiguration Details Pipeline Run Step Override Detail Step Dataflow Configuration Detail  - The configuration details of a Dataflow step.
 - Step
Name string - The name of the step.
 
- step
Configuration List<GetDetails Pipeline Run Step Override Detail Step Configuration Detail>  - The configuration details of a step.
 - step
Container List<GetConfiguration Details Pipeline Run Step Override Detail Step Container Configuration Detail>  - Container Details for a step in pipeline.
 - step
Dataflow List<GetConfiguration Details Pipeline Run Step Override Detail Step Dataflow Configuration Detail>  - The configuration details of a Dataflow step.
 - step
Name String - The name of the step.
 
- step
Configuration GetDetails Pipeline Run Step Override Detail Step Configuration Detail[]  - The configuration details of a step.
 - step
Container GetConfiguration Details Pipeline Run Step Override Detail Step Container Configuration Detail[]  - Container Details for a step in pipeline.
 - step
Dataflow GetConfiguration Details Pipeline Run Step Override Detail Step Dataflow Configuration Detail[]  - The configuration details of a Dataflow step.
 - step
Name string - The name of the step.
 
- step_
configuration_ Sequence[datascience.details Get Pipeline Run Step Override Detail Step Configuration Detail]  - The configuration details of a step.
 - step_
container_ Sequence[datascience.configuration_ details Get Pipeline Run Step Override Detail Step Container Configuration Detail]  - Container Details for a step in pipeline.
 - step_
dataflow_ Sequence[datascience.configuration_ details Get Pipeline Run Step Override Detail Step Dataflow Configuration Detail]  - The configuration details of a Dataflow step.
 - step_
name str - The name of the step.
 
- step
Configuration List<Property Map>Details  - The configuration details of a step.
 - step
Container List<Property Map>Configuration Details  - Container Details for a step in pipeline.
 - step
Dataflow List<Property Map>Configuration Details  - The configuration details of a Dataflow step.
 - step
Name String - The name of the step.
 
GetPipelineRunStepOverrideDetailStepConfigurationDetail        
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables Dictionary<string, string> - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 
- Command
Line stringArguments  - The command line arguments to set for step.
 - Environment
Variables map[string]string - Environment variables to set for step.
 - Maximum
Runtime stringIn Minutes  - A time bound for the execution of the step.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String,String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 
- command
Line stringArguments  - The command line arguments to set for step.
 - environment
Variables {[key: string]: string} - Environment variables to set for step.
 - maximum
Runtime 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.
 
- command
Line StringArguments  - The command line arguments to set for step.
 - environment
Variables Map<String> - Environment variables to set for step.
 - maximum
Runtime StringIn Minutes  - A time bound for the execution of the step.
 
GetPipelineRunStepOverrideDetailStepContainerConfigurationDetail         
- 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. - Container
Type 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.
 - Image
Digest string - The digest of the container image. For example, 
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030 - Image
Signature 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. - Container
Type 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.
 - Image
Digest string - The digest of the container image. For example, 
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030 - Image
Signature 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. - container
Type 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.
 - image
Digest String - The digest of the container image. For example, 
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030 - image
Signature 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. - container
Type 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.
 - image
Digest string - The digest of the container image. For example, 
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030 - image
Signature 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. - container
Type 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.
 - image
Digest String - The digest of the container image. For example, 
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030 - image
Signature StringId  - OCID of the container image signature
 
GetPipelineRunStepOverrideDetailStepDataflowConfigurationDetail         
- Configuration Dictionary<string, string>
 - The Spark configuration passed to the running process.
 - Driver
Shape string - The VM shape for the driver.
 - Driver
Shape List<GetConfig Details 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 string - The VM shape for the executors.
 - Executor
Shape List<GetConfig Details 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 stringUri  - 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 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.
 - Driver
Shape string - The VM shape for the driver.
 - Driver
Shape []GetConfig Details 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 string - The VM shape for the executors.
 - Executor
Shape []GetConfig Details 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 stringUri  - 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 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.
 - driver
Shape String - The VM shape for the driver.
 - driver
Shape List<GetConfig Details 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 String - The VM shape for the executors.
 - executor
Shape List<GetConfig Details 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 StringUri  - An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
 - num
Executors Integer - The number of executor VMs requested.
 - warehouse
Bucket 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.
 - driver
Shape string - The VM shape for the driver.
 - driver
Shape GetConfig Details 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 string - The VM shape for the executors.
 - executor
Shape GetConfig Details 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 stringUri  - An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
 - num
Executors number - The number of executor VMs requested.
 - warehouse
Bucket 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[datascience.config_ details Get 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[datascience.config_ details Get 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.
 - driver
Shape String - The VM shape for the driver.
 - driver
Shape List<Property Map>Config Details  - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
 - executor
Shape String - The VM shape for the executors.
 - executor
Shape List<Property Map>Config Details  - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
 - logs
Bucket StringUri  - An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
 - num
Executors Number - The number of executor VMs requested.
 - warehouse
Bucket StringUri  - An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
 
GetPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail             
- Memory
In 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.
 
- Memory
In 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.
 
- memory
In 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.
 
- memory
In 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.
 
- memory
In 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.
 
GetPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail             
- Memory
In 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.
 
- Memory
In 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.
 
- memory
In 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.
 
- memory
In 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.
 
- memory
In 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.
 
GetPipelineRunStepRun    
- Dataflow
Run stringId  - The OCID of the dataflow run triggered for this step run.
 - Job
Run stringId  - The OCID of the job run triggered for this step run.
 - Lifecycle
Details string - Details of the state of the step run.
 - State string
 - The state of the step run.
 - Step
Name string - The name of the step.
 - Step
Type string - The type of step.
 - Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 
- Dataflow
Run stringId  - The OCID of the dataflow run triggered for this step run.
 - Job
Run stringId  - The OCID of the job run triggered for this step run.
 - Lifecycle
Details string - Details of the state of the step run.
 - State string
 - The state of the step run.
 - Step
Name string - The name of the step.
 - Step
Type string - The type of step.
 - Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 
- dataflow
Run StringId  - The OCID of the dataflow run triggered for this step run.
 - job
Run StringId  - The OCID of the job run triggered for this step run.
 - lifecycle
Details String - Details of the state of the step run.
 - state String
 - The state of the step run.
 - step
Name String - The name of the step.
 - step
Type String - The type of step.
 - time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
 
- dataflow
Run stringId  - The OCID of the dataflow run triggered for this step run.
 - job
Run stringId  - The OCID of the job run triggered for this step run.
 - lifecycle
Details string - Details of the state of the step run.
 - state string
 - The state of the step run.
 - step
Name string - The name of the step.
 - step
Type string - The type of step.
 - time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started 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 state of the step run.
 - 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.
 
- dataflow
Run StringId  - The OCID of the dataflow run triggered for this step run.
 - job
Run StringId  - The OCID of the job run triggered for this step run.
 - lifecycle
Details String - Details of the state of the step run.
 - state String
 - The state of the step run.
 - step
Name String - The name of the step.
 - step
Type String - The type of step.
 - time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
 - time
Started 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.