Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.DataScience.getPipelines
This data source provides the list of Pipelines in Oracle Cloud Infrastructure Data Science service.
Returns a list of Pipelines.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPipelines = oci.DataScience.getPipelines({
    compartmentId: compartmentId,
    createdBy: pipelineCreatedBy,
    displayName: pipelineDisplayName,
    id: pipelineId,
    projectId: testProject.id,
    state: pipelineState,
});
import pulumi
import pulumi_oci as oci
test_pipelines = oci.DataScience.get_pipelines(compartment_id=compartment_id,
    created_by=pipeline_created_by,
    display_name=pipeline_display_name,
    id=pipeline_id,
    project_id=test_project["id"],
    state=pipeline_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datascience"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datascience.GetPipelines(ctx, &datascience.GetPipelinesArgs{
			CompartmentId: compartmentId,
			CreatedBy:     pulumi.StringRef(pipelineCreatedBy),
			DisplayName:   pulumi.StringRef(pipelineDisplayName),
			Id:            pulumi.StringRef(pipelineId),
			ProjectId:     pulumi.StringRef(testProject.Id),
			State:         pulumi.StringRef(pipelineState),
		}, 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 testPipelines = Oci.DataScience.GetPipelines.Invoke(new()
    {
        CompartmentId = compartmentId,
        CreatedBy = pipelineCreatedBy,
        DisplayName = pipelineDisplayName,
        Id = pipelineId,
        ProjectId = testProject.Id,
        State = pipelineState,
    });
});
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.GetPipelinesArgs;
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 testPipelines = DataScienceFunctions.getPipelines(GetPipelinesArgs.builder()
            .compartmentId(compartmentId)
            .createdBy(pipelineCreatedBy)
            .displayName(pipelineDisplayName)
            .id(pipelineId)
            .projectId(testProject.id())
            .state(pipelineState)
            .build());
    }
}
variables:
  testPipelines:
    fn::invoke:
      function: oci:DataScience:getPipelines
      arguments:
        compartmentId: ${compartmentId}
        createdBy: ${pipelineCreatedBy}
        displayName: ${pipelineDisplayName}
        id: ${pipelineId}
        projectId: ${testProject.id}
        state: ${pipelineState}
Using getPipelines
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 getPipelines(args: GetPipelinesArgs, opts?: InvokeOptions): Promise<GetPipelinesResult>
function getPipelinesOutput(args: GetPipelinesOutputArgs, opts?: InvokeOptions): Output<GetPipelinesResult>def get_pipelines(compartment_id: Optional[str] = None,
                  created_by: Optional[str] = None,
                  display_name: Optional[str] = None,
                  filters: Optional[Sequence[GetPipelinesFilter]] = None,
                  id: Optional[str] = None,
                  project_id: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetPipelinesResult
def get_pipelines_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[GetPipelinesFilterArgs]]]] = None,
                  id: Optional[pulumi.Input[str]] = None,
                  project_id: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetPipelinesResult]func GetPipelines(ctx *Context, args *GetPipelinesArgs, opts ...InvokeOption) (*GetPipelinesResult, error)
func GetPipelinesOutput(ctx *Context, args *GetPipelinesOutputArgs, opts ...InvokeOption) GetPipelinesResultOutput> Note: This function is named GetPipelines in the Go SDK.
public static class GetPipelines 
{
    public static Task<GetPipelinesResult> InvokeAsync(GetPipelinesArgs args, InvokeOptions? opts = null)
    public static Output<GetPipelinesResult> Invoke(GetPipelinesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPipelinesResult> getPipelines(GetPipelinesArgs args, InvokeOptions options)
public static Output<GetPipelinesResult> getPipelines(GetPipelinesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataScience/getPipelines:getPipelines
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- Filter results by the OCID of the compartment.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- DisplayName string
- Filter results by its user-friendly name.
- Filters
List<GetPipelines Filter> 
- Id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- ProjectId string
- Filter results by the OCID of the project.
- State string
- The current state of the Pipeline.
- CompartmentId string
- Filter results by the OCID of the compartment.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- DisplayName string
- Filter results by its user-friendly name.
- Filters
[]GetPipelines Filter 
- Id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- ProjectId string
- Filter results by the OCID of the project.
- State string
- The current state of the Pipeline.
- compartmentId String
- Filter results by the OCID of the compartment.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- displayName String
- Filter results by its user-friendly name.
- filters
List<GetPipelines Filter> 
- id String
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- projectId String
- Filter results by the OCID of the project.
- state String
- The current state of the Pipeline.
- compartmentId string
- Filter results by the OCID of the compartment.
- createdBy string
- Filter results by the OCID of the user who created the resource.
- displayName string
- Filter results by its user-friendly name.
- filters
GetPipelines Filter[] 
- id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- projectId string
- Filter results by the OCID of the project.
- state string
- The current state of the Pipeline.
- compartment_id str
- Filter results by the OCID of the compartment.
- created_by str
- Filter results by the OCID of the user who created the resource.
- display_name str
- Filter results by its user-friendly name.
- filters
Sequence[GetPipelines Filter] 
- id str
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- project_id str
- Filter results by the OCID of the project.
- state str
- The current state of the Pipeline.
- compartmentId String
- Filter results by the OCID of the compartment.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- displayName String
- Filter results by its user-friendly name.
- filters List<Property Map>
- id String
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- projectId String
- Filter results by the OCID of the project.
- state String
- The current state of the Pipeline.
getPipelines Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment where you want to create the pipeline.
- Pipelines
List<GetPipelines Pipeline> 
- The list of pipelines.
- CreatedBy string
- The OCID of the user who created the pipeline.
- DisplayName string
- A user-friendly display name for the resource.
- Filters
List<GetPipelines Filter> 
- Id string
- The OCID of the pipeline.
- ProjectId string
- The OCID of the project to associate the pipeline with.
- State string
- The current state of the pipeline.
- CompartmentId string
- The OCID of the compartment where you want to create the pipeline.
- Pipelines
[]GetPipelines Pipeline 
- The list of pipelines.
- CreatedBy string
- The OCID of the user who created the pipeline.
- DisplayName string
- A user-friendly display name for the resource.
- Filters
[]GetPipelines Filter 
- Id string
- The OCID of the pipeline.
- ProjectId string
- The OCID of the project to associate the pipeline with.
- State string
- The current state of the pipeline.
- compartmentId String
- The OCID of the compartment where you want to create the pipeline.
- pipelines
List<GetPipelines Pipeline> 
- The list of pipelines.
- createdBy String
- The OCID of the user who created the pipeline.
- displayName String
- A user-friendly display name for the resource.
- filters
List<GetPipelines Filter> 
- id String
- The OCID of the pipeline.
- projectId String
- The OCID of the project to associate the pipeline with.
- state String
- The current state of the pipeline.
- compartmentId string
- The OCID of the compartment where you want to create the pipeline.
- pipelines
GetPipelines Pipeline[] 
- The list of pipelines.
- createdBy string
- The OCID of the user who created the pipeline.
- displayName string
- A user-friendly display name for the resource.
- filters
GetPipelines Filter[] 
- id string
- The OCID of the pipeline.
- projectId string
- The OCID of the project to associate the pipeline with.
- state string
- The current state of the pipeline.
- compartment_id str
- The OCID of the compartment where you want to create the pipeline.
- pipelines
Sequence[GetPipelines Pipeline] 
- The list of pipelines.
- created_by str
- The OCID of the user who created the pipeline.
- display_name str
- A user-friendly display name for the resource.
- filters
Sequence[GetPipelines Filter] 
- id str
- The OCID of the pipeline.
- project_id str
- The OCID of the project to associate the pipeline with.
- state str
- The current state of the pipeline.
- compartmentId String
- The OCID of the compartment where you want to create the pipeline.
- pipelines List<Property Map>
- The list of pipelines.
- createdBy String
- The OCID of the user who created the pipeline.
- displayName String
- A user-friendly display name for the resource.
- filters List<Property Map>
- id String
- The OCID of the pipeline.
- projectId String
- The OCID of the project to associate the pipeline with.
- state String
- The current state of the pipeline.
Supporting Types
GetPipelinesFilter  
GetPipelinesPipeline  
- CompartmentId string
- Filter results by the OCID of the compartment.
- ConfigurationDetails List<GetPipelines Pipeline Configuration Detail> 
- The configuration details of a pipeline.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- Description string
- A short description of the step.
- DisplayName string
- Filter results by its user-friendly name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- Id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- InfrastructureConfiguration List<GetDetails Pipelines Pipeline Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- LogConfiguration List<GetDetails Pipelines Pipeline Log Configuration Detail> 
- The pipeline log configuration details.
- ProjectId string
- Filter results by the OCID of the project.
- State string
- The current state of the Pipeline.
- StepArtifacts List<GetPipelines Pipeline Step Artifact> 
- StepDetails List<GetPipelines Pipeline Step Detail> 
- Array of step details for each step.
- StorageMount List<GetConfiguration Details Lists Pipelines Pipeline Storage Mount Configuration Details List> 
- The storage mount details to mount to the instance running the pipeline step.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- TimeUpdated string
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- CompartmentId string
- Filter results by the OCID of the compartment.
- ConfigurationDetails []GetPipelines Pipeline Configuration Detail 
- The configuration details of a pipeline.
- CreatedBy string
- Filter results by the OCID of the user who created the resource.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- Description string
- A short description of the step.
- DisplayName string
- Filter results by its user-friendly name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- Id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- InfrastructureConfiguration []GetDetails Pipelines Pipeline Infrastructure Configuration Detail 
- The infrastructure configuration details of a pipeline or a step.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- LogConfiguration []GetDetails Pipelines Pipeline Log Configuration Detail 
- The pipeline log configuration details.
- ProjectId string
- Filter results by the OCID of the project.
- State string
- The current state of the Pipeline.
- StepArtifacts []GetPipelines Pipeline Step Artifact 
- StepDetails []GetPipelines Pipeline Step Detail 
- Array of step details for each step.
- StorageMount []GetConfiguration Details Lists Pipelines Pipeline Storage Mount Configuration Details List 
- The storage mount details to mount to the instance running the pipeline step.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- TimeUpdated string
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- compartmentId String
- Filter results by the OCID of the compartment.
- configurationDetails List<GetPipelines Pipeline Configuration Detail> 
- The configuration details of a pipeline.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Boolean
- description String
- A short description of the step.
- displayName String
- Filter results by its user-friendly name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- id String
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- infrastructureConfiguration List<GetDetails Pipelines Pipeline Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- logConfiguration List<GetDetails Pipelines Pipeline Log Configuration Detail> 
- The pipeline log configuration details.
- projectId String
- Filter results by the OCID of the project.
- state String
- The current state of the Pipeline.
- stepArtifacts List<GetPipelines Pipeline Step Artifact> 
- stepDetails List<GetPipelines Pipeline Step Detail> 
- Array of step details for each step.
- storageMount List<GetConfiguration Details Lists Pipelines Pipeline Storage Mount Configuration Details List> 
- The storage mount details to mount to the instance running the pipeline step.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- timeUpdated String
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- compartmentId string
- Filter results by the OCID of the compartment.
- configurationDetails GetPipelines Pipeline Configuration Detail[] 
- The configuration details of a pipeline.
- createdBy string
- Filter results by the OCID of the user who created the resource.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- boolean
- description string
- A short description of the step.
- displayName string
- Filter results by its user-friendly name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- id string
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- infrastructureConfiguration GetDetails Pipelines Pipeline Infrastructure Configuration Detail[] 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- logConfiguration GetDetails Pipelines Pipeline Log Configuration Detail[] 
- The pipeline log configuration details.
- projectId string
- Filter results by the OCID of the project.
- state string
- The current state of the Pipeline.
- stepArtifacts GetPipelines Pipeline Step Artifact[] 
- stepDetails GetPipelines Pipeline Step Detail[] 
- Array of step details for each step.
- storageMount GetConfiguration Details Lists Pipelines Pipeline Storage Mount Configuration Details List[] 
- The storage mount details to mount to the instance running the pipeline step.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- timeUpdated string
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- compartment_id str
- Filter results by the OCID of the compartment.
- configuration_details Sequence[GetPipelines Pipeline Configuration Detail] 
- The configuration details of a pipeline.
- created_by str
- Filter results by the OCID of the user who created the resource.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- bool
- description str
- A short description of the step.
- display_name str
- Filter results by its user-friendly name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- id str
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- infrastructure_configuration_ Sequence[Getdetails Pipelines Pipeline Infrastructure Configuration Detail] 
- The infrastructure configuration details of a pipeline or a step.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- log_configuration_ Sequence[Getdetails Pipelines Pipeline Log Configuration Detail] 
- The pipeline log configuration details.
- project_id str
- Filter results by the OCID of the project.
- state str
- The current state of the Pipeline.
- step_artifacts Sequence[GetPipelines Pipeline Step Artifact] 
- step_details Sequence[GetPipelines Pipeline Step Detail] 
- Array of step details for each step.
- storage_mount_ Sequence[Getconfiguration_ details_ lists Pipelines Pipeline Storage Mount Configuration Details List] 
- The storage mount details to mount to the instance running the pipeline step.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- time_updated str
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- compartmentId String
- Filter results by the OCID of the compartment.
- configurationDetails List<Property Map>
- The configuration details of a pipeline.
- createdBy String
- Filter results by the OCID of the user who created the resource.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Boolean
- description String
- A short description of the step.
- displayName String
- Filter results by its user-friendly name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- id String
- Filter results by OCID. Must be an OCID of the correct type for the resource type.
- infrastructureConfiguration List<Property Map>Details 
- The infrastructure configuration details of a pipeline or a step.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- logConfiguration List<Property Map>Details 
- The pipeline log configuration details.
- projectId String
- Filter results by the OCID of the project.
- state String
- The current state of the Pipeline.
- stepArtifacts List<Property Map>
- stepDetails List<Property Map>
- Array of step details for each step.
- storageMount List<Property Map>Configuration Details Lists 
- The storage mount details to mount to the instance running the pipeline step.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
- timeUpdated String
- The date and time the resource was updated in the timestamp format defined by RFC3339. Example: 2020-08-06T21:10:29.41Z
GetPipelinesPipelineConfigurationDetail    
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables Dictionary<string, string>
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables map[string]string
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- Type string
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String,String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
- commandLine stringArguments 
- The command line arguments to set for step.
- environmentVariables {[key: string]: string}
- Environment variables to set for step.
- maximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- type string
- The type of pipeline.
- command_line_ strarguments 
- The command line arguments to set for step.
- environment_variables Mapping[str, str]
- Environment variables to set for step.
- maximum_runtime_ strin_ minutes 
- A time bound for the execution of the step.
- type str
- The type of pipeline.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- type String
- The type of pipeline.
GetPipelinesPipelineInfrastructureConfigurationDetail     
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig List<GetDetails Pipelines Pipeline Infrastructure Configuration Detail Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ShapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- SubnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig []GetDetails Pipelines Pipeline Infrastructure Configuration Detail Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ShapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- SubnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage IntegerSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<GetDetails Pipelines Pipeline Infrastructure Configuration Detail Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName String
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId String
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage numberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig GetDetails Pipelines Pipeline Infrastructure Configuration Detail Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- block_storage_ intsize_ in_ gbs 
- The size of the block storage volume to attach to the instance.
- shape_config_ Sequence[Getdetails Pipelines Pipeline Infrastructure Configuration Detail Shape Config Detail] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shape_name str
- The shape used to launch the instance for all step runs in the pipeline.
- subnet_id str
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage NumberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<Property Map>Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName String
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId String
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail        
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpu_baseline str
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelinesPipelineLogConfigurationDetail     
- EnableAuto boolLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- EnableLogging bool
- If customer logging is enabled for pipeline.
- LogGroup stringId 
- The OCID of the log group.
- LogId string
- The OCID of the log.
- EnableAuto boolLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- EnableLogging bool
- If customer logging is enabled for pipeline.
- LogGroup stringId 
- The OCID of the log group.
- LogId string
- The OCID of the log.
- enableAuto BooleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging Boolean
- If customer logging is enabled for pipeline.
- logGroup StringId 
- The OCID of the log group.
- logId String
- The OCID of the log.
- enableAuto booleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging boolean
- If customer logging is enabled for pipeline.
- logGroup stringId 
- The OCID of the log group.
- logId string
- The OCID of the log.
- 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 OCID of the log group.
- log_id str
- The OCID of the log.
- enableAuto BooleanLog Creation 
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enableLogging Boolean
- If customer logging is enabled for pipeline.
- logGroup StringId 
- The OCID of the log group.
- logId String
- The OCID of the log.
GetPipelinesPipelineStepArtifact    
- ArtifactContent stringDisposition 
- ArtifactContent stringLength 
- ArtifactContent stringMd5 
- ArtifactLast stringModified 
- PipelineStep stringArtifact 
- StepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- ArtifactContent stringDisposition 
- ArtifactContent stringLength 
- ArtifactContent stringMd5 
- ArtifactLast stringModified 
- PipelineStep stringArtifact 
- StepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- artifactContent StringDisposition 
- artifactContent StringLength 
- artifactContent StringMd5 
- artifactLast StringModified 
- pipelineStep StringArtifact 
- stepName String
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- artifactContent stringDisposition 
- artifactContent stringLength 
- artifactContent stringMd5 
- artifactLast stringModified 
- pipelineStep stringArtifact 
- stepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- artifact_content_ strdisposition 
- artifact_content_ strlength 
- artifact_content_ strmd5 
- artifact_last_ strmodified 
- pipeline_step_ strartifact 
- step_name str
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- artifactContent StringDisposition 
- artifactContent StringLength 
- artifactContent StringMd5 
- artifactLast StringModified 
- pipelineStep StringArtifact 
- stepName String
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
GetPipelinesPipelineStepDetail    
- ApplicationId string
- The OCID of the dataflow application to be used as a step.
- DependsOns List<string>
- The list of step names this current step depends on for execution.
- Description string
- A short description of the step.
- IsArtifact boolUploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- JobId string
- The OCID of the job to be used as a step.
- StepConfiguration List<GetDetails Pipelines Pipeline Step Detail Step Configuration Detail> 
- The configuration details of a step.
- StepContainer List<GetConfiguration Details Pipelines Pipeline Step Detail Step Container Configuration Detail> 
- Container Details for a step in pipeline.
- StepDataflow List<GetConfiguration Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail> 
- The configuration details of a Dataflow step.
- StepInfrastructure List<GetConfiguration Details Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- StepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- StepStorage List<GetMount Configuration Details Lists Pipelines Pipeline Step Detail Step Storage Mount Configuration Details List> 
- The storage mount details to mount to the instance running the pipeline step.
- StepType string
- The type of step.
- ApplicationId string
- The OCID of the dataflow application to be used as a step.
- DependsOns []string
- The list of step names this current step depends on for execution.
- Description string
- A short description of the step.
- IsArtifact boolUploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- JobId string
- The OCID of the job to be used as a step.
- StepConfiguration []GetDetails Pipelines Pipeline Step Detail Step Configuration Detail 
- The configuration details of a step.
- StepContainer []GetConfiguration Details Pipelines Pipeline Step Detail Step Container Configuration Detail 
- Container Details for a step in pipeline.
- StepDataflow []GetConfiguration Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail 
- The configuration details of a Dataflow step.
- StepInfrastructure []GetConfiguration Details Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail 
- The infrastructure configuration details of a pipeline or a step.
- StepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- StepStorage []GetMount Configuration Details Lists Pipelines Pipeline Step Detail Step Storage Mount Configuration Details List 
- The storage mount details to mount to the instance running the pipeline step.
- StepType string
- The type of step.
- applicationId String
- The OCID of the dataflow application to be used as a step.
- dependsOns List<String>
- The list of step names this current step depends on for execution.
- description String
- A short description of the step.
- isArtifact BooleanUploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- jobId String
- The OCID of the job to be used as a step.
- stepConfiguration List<GetDetails Pipelines Pipeline Step Detail Step Configuration Detail> 
- The configuration details of a step.
- stepContainer List<GetConfiguration Details Pipelines Pipeline Step Detail Step Container Configuration Detail> 
- Container Details for a step in pipeline.
- stepDataflow List<GetConfiguration Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail> 
- The configuration details of a Dataflow step.
- stepInfrastructure List<GetConfiguration Details Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail> 
- The infrastructure configuration details of a pipeline or a step.
- stepName String
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- stepStorage List<GetMount Configuration Details Lists Pipelines Pipeline Step Detail Step Storage Mount Configuration Details List> 
- The storage mount details to mount to the instance running the pipeline step.
- stepType String
- The type of step.
- applicationId string
- The OCID of the dataflow application to be used as a step.
- dependsOns string[]
- The list of step names this current step depends on for execution.
- description string
- A short description of the step.
- isArtifact booleanUploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- jobId string
- The OCID of the job to be used as a step.
- stepConfiguration GetDetails Pipelines Pipeline Step Detail Step Configuration Detail[] 
- The configuration details of a step.
- stepContainer GetConfiguration Details Pipelines Pipeline Step Detail Step Container Configuration Detail[] 
- Container Details for a step in pipeline.
- stepDataflow GetConfiguration Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail[] 
- The configuration details of a Dataflow step.
- stepInfrastructure GetConfiguration Details Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail[] 
- The infrastructure configuration details of a pipeline or a step.
- stepName string
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- stepStorage GetMount Configuration Details Lists Pipelines Pipeline Step Detail Step Storage Mount Configuration Details List[] 
- The storage mount details to mount to the instance running the pipeline step.
- stepType string
- The type of step.
- application_id str
- The OCID of the dataflow application to be used as a step.
- depends_ons Sequence[str]
- The list of step names this current step depends on for execution.
- description str
- A short description of the step.
- is_artifact_ booluploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- job_id str
- The OCID of the job to be used as a step.
- step_configuration_ Sequence[Getdetails Pipelines Pipeline Step Detail Step Configuration Detail] 
- The configuration details of a step.
- step_container_ Sequence[Getconfiguration_ details Pipelines Pipeline Step Detail Step Container Configuration Detail] 
- Container Details for a step in pipeline.
- step_dataflow_ Sequence[Getconfiguration_ details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail] 
- The configuration details of a Dataflow step.
- step_infrastructure_ Sequence[Getconfiguration_ details Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail] 
- The infrastructure configuration details of a pipeline or a step.
- step_name str
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- step_storage_ Sequence[Getmount_ configuration_ details_ lists Pipelines Pipeline Step Detail Step Storage Mount Configuration Details List] 
- The storage mount details to mount to the instance running the pipeline step.
- step_type str
- The type of step.
- applicationId String
- The OCID of the dataflow application to be used as a step.
- dependsOns List<String>
- The list of step names this current step depends on for execution.
- description String
- A short description of the step.
- isArtifact BooleanUploaded 
- A flag to indicate whether the artifact has been uploaded for this step or not.
- jobId String
- The OCID of the job to be used as a step.
- stepConfiguration List<Property Map>Details 
- The configuration details of a step.
- stepContainer List<Property Map>Configuration Details 
- Container Details for a step in pipeline.
- stepDataflow List<Property Map>Configuration Details 
- The configuration details of a Dataflow step.
- stepInfrastructure List<Property Map>Configuration Details 
- The infrastructure configuration details of a pipeline or a step.
- stepName String
- The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
- stepStorage List<Property Map>Mount Configuration Details Lists 
- The storage mount details to mount to the instance running the pipeline step.
- stepType String
- The type of step.
GetPipelinesPipelineStepDetailStepConfigurationDetail       
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables Dictionary<string, string>
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- CommandLine stringArguments 
- The command line arguments to set for step.
- EnvironmentVariables map[string]string
- Environment variables to set for step.
- MaximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String,String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
- commandLine stringArguments 
- The command line arguments to set for step.
- environmentVariables {[key: string]: string}
- Environment variables to set for step.
- maximumRuntime stringIn Minutes 
- A time bound for the execution of the step.
- command_line_ strarguments 
- The command line arguments to set for step.
- environment_variables Mapping[str, str]
- Environment variables to set for step.
- maximum_runtime_ strin_ minutes 
- A time bound for the execution of the step.
- commandLine StringArguments 
- The command line arguments to set for step.
- environmentVariables Map<String>
- Environment variables to set for step.
- maximumRuntime StringIn Minutes 
- A time bound for the execution of the step.
GetPipelinesPipelineStepDetailStepContainerConfigurationDetail        
- Cmds List<string>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- ContainerType string
- The type of container.
- Entrypoints List<string>
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- Image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- ImageDigest string
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- ImageSignature stringId 
- OCID of the container image signature
- Cmds []string
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- ContainerType string
- The type of container.
- Entrypoints []string
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- Image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- ImageDigest string
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- ImageSignature stringId 
- OCID of the container image signature
- cmds List<String>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- containerType String
- The type of container.
- entrypoints List<String>
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- image String
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- imageDigest String
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- imageSignature StringId 
- OCID of the container image signature
- cmds string[]
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- containerType string
- The type of container.
- entrypoints string[]
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- imageDigest string
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- imageSignature stringId 
- OCID of the container image signature
- cmds Sequence[str]
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- container_type str
- The type of container.
- entrypoints Sequence[str]
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- image str
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- image_digest str
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image_signature_ strid 
- OCID of the container image signature
- cmds List<String>
- The container image run CMD as a list of strings. Use CMDas arguments to theENTRYPOINTor the only command to run in the absence of anENTRYPOINT. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes.
- containerType String
- The type of container.
- entrypoints List<String>
- The container image run ENTRYPOINT as a list of strings. Accept the CMDas extra arguments. The combined size ofCMDandENTRYPOINTmust be less than 2048 bytes. More information on howCMDandENTRYPOINTinteract are here.
- image String
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- imageDigest String
- The digest of the container image. For example, sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- imageSignature StringId 
- OCID of the container image signature
GetPipelinesPipelineStepDetailStepDataflowConfigurationDetail        
- Configuration Dictionary<string, string>
- The Spark configuration passed to the running process.
- DriverShape string
- The VM shape for the driver.
- DriverShape List<GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Driver Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ExecutorShape string
- The VM shape for the executors.
- ExecutorShape List<GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Executor Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- LogsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- NumExecutors int
- The number of executor VMs requested.
- WarehouseBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- Configuration map[string]string
- The Spark configuration passed to the running process.
- DriverShape string
- The VM shape for the driver.
- DriverShape []GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Driver Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ExecutorShape string
- The VM shape for the executors.
- ExecutorShape []GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Executor Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- LogsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- NumExecutors int
- The number of executor VMs requested.
- WarehouseBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration Map<String,String>
- The Spark configuration passed to the running process.
- driverShape String
- The VM shape for the driver.
- driverShape List<GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Driver Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape String
- The VM shape for the executors.
- executorShape List<GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Executor Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- numExecutors Integer
- The number of executor VMs requested.
- warehouseBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration {[key: string]: string}
- The Spark configuration passed to the running process.
- driverShape string
- The VM shape for the driver.
- driverShape GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Driver Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape string
- The VM shape for the executors.
- executorShape GetConfig Details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Executor Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- numExecutors number
- The number of executor VMs requested.
- warehouseBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration Mapping[str, str]
- The Spark configuration passed to the running process.
- driver_shape str
- The VM shape for the driver.
- driver_shape_ Sequence[Getconfig_ details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Driver Shape Config Detail] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executor_shape str
- The VM shape for the executors.
- executor_shape_ Sequence[Getconfig_ details Pipelines Pipeline Step Detail Step Dataflow Configuration Detail Executor Shape Config Detail] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs_bucket_ struri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- num_executors int
- The number of executor VMs requested.
- warehouse_bucket_ struri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration Map<String>
- The Spark configuration passed to the running process.
- driverShape String
- The VM shape for the driver.
- driverShape List<Property Map>Config Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executorShape String
- The VM shape for the executors.
- executorShape List<Property Map>Config Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logsBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- numExecutors Number
- The number of executor VMs requested.
- warehouseBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
GetPipelinesPipelineStepDetailStepDataflowConfigurationDetailDriverShapeConfigDetail            
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpu_baseline str
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelinesPipelineStepDetailStepDataflowConfigurationDetailExecutorShapeConfigDetail            
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpu_baseline str
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail        
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig List<GetDetails Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ShapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- SubnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- BlockStorage intSize In Gbs 
- The size of the block storage volume to attach to the instance.
- ShapeConfig []GetDetails Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail Shape Config Detail 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- ShapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- SubnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage IntegerSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<GetDetails Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail Shape Config Detail> 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName String
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId String
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage numberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig GetDetails Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail Shape Config Detail[] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName string
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId string
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- block_storage_ intsize_ in_ gbs 
- The size of the block storage volume to attach to the instance.
- shape_config_ Sequence[Getdetails Pipelines Pipeline Step Detail Step Infrastructure Configuration Detail Shape Config Detail] 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shape_name str
- The shape used to launch the instance for all step runs in the pipeline.
- subnet_id str
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
- blockStorage NumberSize In Gbs 
- The size of the block storage volume to attach to the instance.
- shapeConfig List<Property Map>Details 
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- shapeName String
- The shape used to launch the instance for all step runs in the pipeline.
- subnetId String
- The subnet to create a secondary vnic in to attach to the instance running the pipeline step.
GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail           
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn doubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- CpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- MemoryIn float64Gbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- Ocpus float64
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn DoubleGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Double
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline string
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn numberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpu_baseline str
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memory_in_ floatgbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus float
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- cpuBaseline String
- The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.
- memoryIn NumberGbs 
- A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
- ocpus Number
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
GetPipelinesPipelineStepDetailStepStorageMountConfigurationDetailsList          
- Bucket string
- The object storage bucket
- DestinationDirectory stringName 
- The local directory name to be mounted
- DestinationPath string
- The local path of the mounted directory, excluding directory name.
- ExportId string
- OCID of the export
- MountTarget stringId 
- OCID of the mount target
- Namespace string
- The object storage namespace
- Prefix string
- Prefix in the bucket to mount
- StorageType string
- The type of storage.
- Bucket string
- The object storage bucket
- DestinationDirectory stringName 
- The local directory name to be mounted
- DestinationPath string
- The local path of the mounted directory, excluding directory name.
- ExportId string
- OCID of the export
- MountTarget stringId 
- OCID of the mount target
- Namespace string
- The object storage namespace
- Prefix string
- Prefix in the bucket to mount
- StorageType string
- The type of storage.
- bucket String
- The object storage bucket
- destinationDirectory StringName 
- The local directory name to be mounted
- destinationPath String
- The local path of the mounted directory, excluding directory name.
- exportId String
- OCID of the export
- mountTarget StringId 
- OCID of the mount target
- namespace String
- The object storage namespace
- prefix String
- Prefix in the bucket to mount
- storageType String
- The type of storage.
- bucket string
- The object storage bucket
- destinationDirectory stringName 
- The local directory name to be mounted
- destinationPath string
- The local path of the mounted directory, excluding directory name.
- exportId string
- OCID of the export
- mountTarget stringId 
- OCID of the mount target
- namespace string
- The object storage namespace
- prefix string
- Prefix in the bucket to mount
- storageType string
- The type of storage.
- bucket str
- The object storage bucket
- destination_directory_ strname 
- The local directory name to be mounted
- destination_path str
- The local path of the mounted directory, excluding directory name.
- export_id str
- OCID of the export
- mount_target_ strid 
- OCID of the mount target
- namespace str
- The object storage namespace
- prefix str
- Prefix in the bucket to mount
- storage_type str
- The type of storage.
- bucket String
- The object storage bucket
- destinationDirectory StringName 
- The local directory name to be mounted
- destinationPath String
- The local path of the mounted directory, excluding directory name.
- exportId String
- OCID of the export
- mountTarget StringId 
- OCID of the mount target
- namespace String
- The object storage namespace
- prefix String
- Prefix in the bucket to mount
- storageType String
- The type of storage.
GetPipelinesPipelineStorageMountConfigurationDetailsList       
- Bucket string
- The object storage bucket
- DestinationDirectory stringName 
- The local directory name to be mounted
- DestinationPath string
- The local path of the mounted directory, excluding directory name.
- ExportId string
- OCID of the export
- MountTarget stringId 
- OCID of the mount target
- Namespace string
- The object storage namespace
- Prefix string
- Prefix in the bucket to mount
- StorageType string
- The type of storage.
- Bucket string
- The object storage bucket
- DestinationDirectory stringName 
- The local directory name to be mounted
- DestinationPath string
- The local path of the mounted directory, excluding directory name.
- ExportId string
- OCID of the export
- MountTarget stringId 
- OCID of the mount target
- Namespace string
- The object storage namespace
- Prefix string
- Prefix in the bucket to mount
- StorageType string
- The type of storage.
- bucket String
- The object storage bucket
- destinationDirectory StringName 
- The local directory name to be mounted
- destinationPath String
- The local path of the mounted directory, excluding directory name.
- exportId String
- OCID of the export
- mountTarget StringId 
- OCID of the mount target
- namespace String
- The object storage namespace
- prefix String
- Prefix in the bucket to mount
- storageType String
- The type of storage.
- bucket string
- The object storage bucket
- destinationDirectory stringName 
- The local directory name to be mounted
- destinationPath string
- The local path of the mounted directory, excluding directory name.
- exportId string
- OCID of the export
- mountTarget stringId 
- OCID of the mount target
- namespace string
- The object storage namespace
- prefix string
- Prefix in the bucket to mount
- storageType string
- The type of storage.
- bucket str
- The object storage bucket
- destination_directory_ strname 
- The local directory name to be mounted
- destination_path str
- The local path of the mounted directory, excluding directory name.
- export_id str
- OCID of the export
- mount_target_ strid 
- OCID of the mount target
- namespace str
- The object storage namespace
- prefix str
- Prefix in the bucket to mount
- storage_type str
- The type of storage.
- bucket String
- The object storage bucket
- destinationDirectory StringName 
- The local directory name to be mounted
- destinationPath String
- The local path of the mounted directory, excluding directory name.
- exportId String
- OCID of the export
- mountTarget StringId 
- OCID of the mount target
- namespace String
- The object storage namespace
- prefix String
- Prefix in the bucket to mount
- storageType String
- The type of storage.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
