1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. getPipelineRuns
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.DataScience.getPipelineRuns

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

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

Returns a list of PipelineRuns.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testPipelineRuns = oci.DataScience.getPipelineRuns({
    compartmentId: compartmentId,
    createdBy: pipelineRunCreatedBy,
    displayName: pipelineRunDisplayName,
    id: pipelineRunId,
    pipelineId: testPipeline.id,
    state: pipelineRunState,
});
Copy
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)
Copy
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.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
	})
}
Copy
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,
    });

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

    }
}
Copy
variables:
  testPipelineRuns:
    fn::invoke:
      function: oci:DataScience:getPipelineRuns
      arguments:
        compartmentId: ${compartmentId}
        createdBy: ${pipelineRunCreatedBy}
        displayName: ${pipelineRunDisplayName}
        id: ${pipelineRunId}
        pipelineId: ${testPipeline.id}
        state: ${pipelineRunState}
Copy

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>
Copy
def get_pipeline_runs(compartment_id: Optional[str] = None,
                      created_by: Optional[str] = None,
                      display_name: Optional[str] = None,
                      filters: Optional[Sequence[_datascience.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[_datascience.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]
Copy
func GetPipelineRuns(ctx *Context, args *GetPipelineRunsArgs, opts ...InvokeOption) (*GetPipelineRunsResult, error)
func GetPipelineRunsOutput(ctx *Context, args *GetPipelineRunsOutputArgs, opts ...InvokeOption) GetPipelineRunsResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetPipelineRunsResult> getPipelineRuns(GetPipelineRunsArgs args, InvokeOptions options)
public static Output<GetPipelineRunsResult> getPipelineRuns(GetPipelineRunsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataScience/getPipelineRuns:getPipelineRuns
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. 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 Changes to this property will trigger replacement. List<GetPipelineRunsFilter>
Id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
PipelineId string
The OCID of the pipeline.
State string
The current state of the PipelineRun.
CompartmentId This property is required. 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 Changes to this property will trigger replacement. []GetPipelineRunsFilter
Id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
PipelineId string
The OCID of the pipeline.
State string
The current state of the PipelineRun.
compartmentId This property is required. 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 Changes to this property will trigger replacement. List<GetPipelineRunsFilter>
id String
Filter results by OCID. Must be an OCID of the correct type for the resource type.
pipelineId String
The OCID of the pipeline.
state String
The current state of the PipelineRun.
compartmentId This property is required. 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 Changes to this property will trigger replacement. GetPipelineRunsFilter[]
id string
Filter results by OCID. Must be an OCID of the correct type for the resource type.
pipelineId string
The OCID of the pipeline.
state string
The current state of the PipelineRun.
compartment_id This property is required. 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 Changes to this property will trigger replacement. Sequence[datascience.GetPipelineRunsFilter]
id str
Filter results by OCID. Must be an OCID of the correct type for the resource type.
pipeline_id str
The OCID of the pipeline.
state str
The current state of the PipelineRun.
compartmentId This property is required. 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 Changes to this property will trigger replacement. List<Property Map>
id String
Filter results by OCID. Must be an OCID of the correct type for the resource type.
pipelineId String
The OCID of the pipeline.
state String
The current state of the PipelineRun.

getPipelineRuns Result

The following output properties are available:

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

Supporting Types

GetPipelineRunsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetPipelineRunsPipelineRun

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

GetPipelineRunsPipelineRunConfigurationDetail

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

GetPipelineRunsPipelineRunConfigurationOverrideDetail

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

GetPipelineRunsPipelineRunLogConfigurationOverrideDetail

EnableAutoLogCreation This property is required. bool
If automatic on-behalf-of log object creation is enabled for pipeline runs.
EnableLogging This property is required. bool
If customer logging is enabled for pipeline.
LogGroupId This property is required. string
The log group id for where log objects will be for pipeline runs.
LogId This property is required. string
The log id of the log object the pipeline run logs will be shipped to.
EnableAutoLogCreation This property is required. bool
If automatic on-behalf-of log object creation is enabled for pipeline runs.
EnableLogging This property is required. bool
If customer logging is enabled for pipeline.
LogGroupId This property is required. string
The log group id for where log objects will be for pipeline runs.
LogId This property is required. string
The log id of the log object the pipeline run logs will be shipped to.
enableAutoLogCreation This property is required. Boolean
If automatic on-behalf-of log object creation is enabled for pipeline runs.
enableLogging This property is required. Boolean
If customer logging is enabled for pipeline.
logGroupId This property is required. String
The log group id for where log objects will be for pipeline runs.
logId This property is required. String
The log id of the log object the pipeline run logs will be shipped to.
enableAutoLogCreation This property is required. boolean
If automatic on-behalf-of log object creation is enabled for pipeline runs.
enableLogging This property is required. boolean
If customer logging is enabled for pipeline.
logGroupId This property is required. string
The log group id for where log objects will be for pipeline runs.
logId This property is required. string
The log id of the log object the pipeline run logs will be shipped to.
enable_auto_log_creation This property is required. bool
If automatic on-behalf-of log object creation is enabled for pipeline runs.
enable_logging This property is required. bool
If customer logging is enabled for pipeline.
log_group_id This property is required. str
The log group id for where log objects will be for pipeline runs.
log_id This property is required. str
The log id of the log object the pipeline run logs will be shipped to.
enableAutoLogCreation This property is required. Boolean
If automatic on-behalf-of log object creation is enabled for pipeline runs.
enableLogging This property is required. Boolean
If customer logging is enabled for pipeline.
logGroupId This property is required. String
The log group id for where log objects will be for pipeline runs.
logId This property is required. String
The log id of the log object the pipeline run logs will be shipped to.

GetPipelineRunsPipelineRunLogDetail

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

GetPipelineRunsPipelineRunStepOverrideDetail

StepConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail>
The configuration details of a step.
StepContainerConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail>
Container Details for a step in pipeline.
StepDataflowConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail>
The configuration details of a Dataflow step.
StepName This property is required. string
The name of the step.
StepConfigurationDetails This property is required. []GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail
The configuration details of a step.
StepContainerConfigurationDetails This property is required. []GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail
Container Details for a step in pipeline.
StepDataflowConfigurationDetails This property is required. []GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail
The configuration details of a Dataflow step.
StepName This property is required. string
The name of the step.
stepConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail>
The configuration details of a step.
stepContainerConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail>
Container Details for a step in pipeline.
stepDataflowConfigurationDetails This property is required. List<GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail>
The configuration details of a Dataflow step.
stepName This property is required. String
The name of the step.
stepConfigurationDetails This property is required. GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail[]
The configuration details of a step.
stepContainerConfigurationDetails This property is required. GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail[]
Container Details for a step in pipeline.
stepDataflowConfigurationDetails This property is required. GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail[]
The configuration details of a Dataflow step.
stepName This property is required. string
The name of the step.
stepConfigurationDetails This property is required. List<Property Map>
The configuration details of a step.
stepContainerConfigurationDetails This property is required. List<Property Map>
Container Details for a step in pipeline.
stepDataflowConfigurationDetails This property is required. List<Property Map>
The configuration details of a Dataflow step.
stepName This property is required. String
The name of the step.

GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail

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

GetPipelineRunsPipelineRunStepOverrideDetailStepContainerConfigurationDetail

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

GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetail

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

GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailDriverShapeConfigDetail

MemoryInGbs This property is required. double
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 This property is required. double
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
MemoryInGbs This property is required. float64
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 This property is required. float64
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. Double
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 This property is required. Double
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. number
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 This property is required. number
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memory_in_gbs This property is required. float
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 This property is required. float
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. Number
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 This property is required. Number
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.

GetPipelineRunsPipelineRunStepOverrideDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail

MemoryInGbs This property is required. double
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 This property is required. double
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
MemoryInGbs This property is required. float64
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 This property is required. float64
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. Double
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 This property is required. Double
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. number
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 This property is required. number
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memory_in_gbs This property is required. float
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 This property is required. float
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memoryInGbs This property is required. Number
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 This property is required. Number
A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.

GetPipelineRunsPipelineRunStepRun

DataflowRunId This property is required. string
The OCID of the dataflow run triggered for this step run.
JobRunId This property is required. string
The OCID of the job run triggered for this step run.
LifecycleDetails This property is required. string
Details of the state of the step run.
State This property is required. string
The current state of the PipelineRun.
StepName This property is required. string
The name of the step.
StepType This property is required. string
The type of step.
TimeFinished This property is required. string
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
TimeStarted This property is required. string
The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
DataflowRunId This property is required. string
The OCID of the dataflow run triggered for this step run.
JobRunId This property is required. string
The OCID of the job run triggered for this step run.
LifecycleDetails This property is required. string
Details of the state of the step run.
State This property is required. string
The current state of the PipelineRun.
StepName This property is required. string
The name of the step.
StepType This property is required. string
The type of step.
TimeFinished This property is required. string
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
TimeStarted This property is required. string
The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
dataflowRunId This property is required. String
The OCID of the dataflow run triggered for this step run.
jobRunId This property is required. String
The OCID of the job run triggered for this step run.
lifecycleDetails This property is required. String
Details of the state of the step run.
state This property is required. String
The current state of the PipelineRun.
stepName This property is required. String
The name of the step.
stepType This property is required. String
The type of step.
timeFinished This property is required. String
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
timeStarted This property is required. String
The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
dataflowRunId This property is required. string
The OCID of the dataflow run triggered for this step run.
jobRunId This property is required. string
The OCID of the job run triggered for this step run.
lifecycleDetails This property is required. string
Details of the state of the step run.
state This property is required. string
The current state of the PipelineRun.
stepName This property is required. string
The name of the step.
stepType This property is required. string
The type of step.
timeFinished This property is required. string
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
timeStarted This property is required. string
The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
dataflow_run_id This property is required. str
The OCID of the dataflow run triggered for this step run.
job_run_id This property is required. str
The OCID of the job run triggered for this step run.
lifecycle_details This property is required. str
Details of the state of the step run.
state This property is required. str
The current state of the PipelineRun.
step_name This property is required. str
The name of the step.
step_type This property is required. str
The type of step.
time_finished This property is required. str
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
time_started This property is required. str
The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
dataflowRunId This property is required. String
The OCID of the dataflow run triggered for this step run.
jobRunId This property is required. String
The OCID of the job run triggered for this step run.
lifecycleDetails This property is required. String
Details of the state of the step run.
state This property is required. String
The current state of the PipelineRun.
stepName This property is required. String
The name of the step.
stepType This property is required. String
The type of step.
timeFinished This property is required. String
The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
timeStarted This property is required. 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 oci Terraform Provider.
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi