1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. getPipelines
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataScience.getPipelines

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        createdBy: _var.pipeline_created_by,
        displayName: _var.pipeline_display_name,
        id: _var.pipeline_id,
        projectId: oci_datascience_project.test_project.id,
        state: _var.pipeline_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_pipelines = oci.DataScience.get_pipelines(compartment_id=var["compartment_id"],
        created_by=var["pipeline_created_by"],
        display_name=var["pipeline_display_name"],
        id=var["pipeline_id"],
        project_id=oci_datascience_project["test_project"]["id"],
        state=var["pipeline_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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: _var.Compartment_id,
    			CreatedBy:     pulumi.StringRef(_var.Pipeline_created_by),
    			DisplayName:   pulumi.StringRef(_var.Pipeline_display_name),
    			Id:            pulumi.StringRef(_var.Pipeline_id),
    			ProjectId:     pulumi.StringRef(oci_datascience_project.Test_project.Id),
    			State:         pulumi.StringRef(_var.Pipeline_state),
    		}, 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 = @var.Compartment_id,
            CreatedBy = @var.Pipeline_created_by,
            DisplayName = @var.Pipeline_display_name,
            Id = @var.Pipeline_id,
            ProjectId = oci_datascience_project.Test_project.Id,
            State = @var.Pipeline_state,
        });
    
    });
    
    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(var_.compartment_id())
                .createdBy(var_.pipeline_created_by())
                .displayName(var_.pipeline_display_name())
                .id(var_.pipeline_id())
                .projectId(oci_datascience_project.test_project().id())
                .state(var_.pipeline_state())
                .build());
    
        }
    }
    
    variables:
      testPipelines:
        fn::invoke:
          Function: oci:DataScience:getPipelines
          Arguments:
            compartmentId: ${var.compartment_id}
            createdBy: ${var.pipeline_created_by}
            displayName: ${var.pipeline_display_name}
            id: ${var.pipeline_id}
            projectId: ${oci_datascience_project.test_project.id}
            state: ${var.pipeline_state}
    

    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[_datascience.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[_datascience.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataScience/getPipelines:getPipelines
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    Filter results by the OCID of the compartment.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DisplayName string
    Filter results by its user-friendly name.
    Filters List<GetPipelinesFilter>
    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 []GetPipelinesFilter
    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<GetPipelinesFilter>
    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 GetPipelinesFilter[]
    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[datascience.GetPipelinesFilter]
    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<GetPipelinesPipeline>
    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<GetPipelinesFilter>
    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 []GetPipelinesPipeline
    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 []GetPipelinesFilter
    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<GetPipelinesPipeline>
    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<GetPipelinesFilter>
    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 GetPipelinesPipeline[]
    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 GetPipelinesFilter[]
    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[datascience.GetPipelinesPipeline]
    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[datascience.GetPipelinesFilter]
    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

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

    GetPipelinesPipeline

    CompartmentId string
    Filter results by the OCID of the compartment.
    ConfigurationDetails List<GetPipelinesPipelineConfigurationDetail>
    The configuration details of a pipeline.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DeleteRelatedPipelineRuns bool
    Description string
    A short description of the step.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags Dictionary<string, object>
    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.
    InfrastructureConfigurationDetails List<GetPipelinesPipelineInfrastructureConfigurationDetail>
    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.
    LogConfigurationDetails List<GetPipelinesPipelineLogConfigurationDetail>
    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<GetPipelinesPipelineStepArtifact>
    StepDetails List<GetPipelinesPipelineStepDetail>
    Array of step details for each step.
    SystemTags Dictionary<string, object>
    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 []GetPipelinesPipelineConfigurationDetail
    The configuration details of a pipeline.
    CreatedBy string
    Filter results by the OCID of the user who created the resource.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    DeleteRelatedPipelineRuns bool
    Description string
    A short description of the step.
    DisplayName string
    Filter results by its user-friendly name.
    FreeformTags map[string]interface{}
    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.
    InfrastructureConfigurationDetails []GetPipelinesPipelineInfrastructureConfigurationDetail
    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.
    LogConfigurationDetails []GetPipelinesPipelineLogConfigurationDetail
    The pipeline log configuration details.
    ProjectId string
    Filter results by the OCID of the project.
    State string
    The current state of the Pipeline.
    StepArtifacts []GetPipelinesPipelineStepArtifact
    StepDetails []GetPipelinesPipelineStepDetail
    Array of step details for each step.
    SystemTags map[string]interface{}
    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<GetPipelinesPipelineConfigurationDetail>
    The configuration details of a pipeline.
    createdBy String
    Filter results by the OCID of the user who created the resource.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    deleteRelatedPipelineRuns Boolean
    description String
    A short description of the step.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<String,Object>
    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.
    infrastructureConfigurationDetails List<GetPipelinesPipelineInfrastructureConfigurationDetail>
    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.
    logConfigurationDetails List<GetPipelinesPipelineLogConfigurationDetail>
    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<GetPipelinesPipelineStepArtifact>
    stepDetails List<GetPipelinesPipelineStepDetail>
    Array of step details for each step.
    systemTags Map<String,Object>
    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 GetPipelinesPipelineConfigurationDetail[]
    The configuration details of a pipeline.
    createdBy string
    Filter results by the OCID of the user who created the resource.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    deleteRelatedPipelineRuns boolean
    description string
    A short description of the step.
    displayName string
    Filter results by its user-friendly name.
    freeformTags {[key: string]: any}
    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.
    infrastructureConfigurationDetails GetPipelinesPipelineInfrastructureConfigurationDetail[]
    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.
    logConfigurationDetails GetPipelinesPipelineLogConfigurationDetail[]
    The pipeline log configuration details.
    projectId string
    Filter results by the OCID of the project.
    state string
    The current state of the Pipeline.
    stepArtifacts GetPipelinesPipelineStepArtifact[]
    stepDetails GetPipelinesPipelineStepDetail[]
    Array of step details for each step.
    systemTags {[key: string]: any}
    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[datascience.GetPipelinesPipelineConfigurationDetail]
    The configuration details of a pipeline.
    created_by str
    Filter results by the OCID of the user who created the resource.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    delete_related_pipeline_runs bool
    description str
    A short description of the step.
    display_name str
    Filter results by its user-friendly name.
    freeform_tags Mapping[str, Any]
    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_details Sequence[datascience.GetPipelinesPipelineInfrastructureConfigurationDetail]
    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_details Sequence[datascience.GetPipelinesPipelineLogConfigurationDetail]
    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[datascience.GetPipelinesPipelineStepArtifact]
    step_details Sequence[datascience.GetPipelinesPipelineStepDetail]
    Array of step details for each step.
    system_tags Mapping[str, Any]
    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.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    deleteRelatedPipelineRuns Boolean
    description String
    A short description of the step.
    displayName String
    Filter results by its user-friendly name.
    freeformTags Map<Any>
    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.
    infrastructureConfigurationDetails List<Property Map>
    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.
    logConfigurationDetails List<Property Map>
    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.
    systemTags Map<Any>
    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

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

    GetPipelinesPipelineInfrastructureConfigurationDetail

    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    ShapeConfigDetails List<GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail>
    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.
    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    ShapeConfigDetails []GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail
    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.
    blockStorageSizeInGbs Integer
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails List<GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail>
    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.
    blockStorageSizeInGbs number
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail[]
    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.
    block_storage_size_in_gbs int
    The size of the block storage volume to attach to the instance.
    shape_config_details Sequence[datascience.GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail]
    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.
    blockStorageSizeInGbs Number
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.

    GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail

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

    GetPipelinesPipelineLogConfigurationDetail

    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    EnableAutoLogCreation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    EnableLogging bool
    If customer logging is enabled for pipeline.
    LogGroupId string
    The OCID of the log group.
    LogId string
    The OCID of the log.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.
    enableAutoLogCreation boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging boolean
    If customer logging is enabled for pipeline.
    logGroupId string
    The OCID of the log group.
    logId string
    The OCID of the log.
    enable_auto_log_creation bool
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enable_logging bool
    If customer logging is enabled for pipeline.
    log_group_id str
    The OCID of the log group.
    log_id str
    The OCID of the log.
    enableAutoLogCreation Boolean
    If automatic on-behalf-of log object creation is enabled for pipeline runs.
    enableLogging Boolean
    If customer logging is enabled for pipeline.
    logGroupId String
    The OCID of the log group.
    logId String
    The OCID of the log.

    GetPipelinesPipelineStepArtifact

    ArtifactContentDisposition string
    ArtifactContentLength string
    ArtifactContentMd5 string
    ArtifactLastModified string
    PipelineStepArtifact string
    StepName string
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
    ArtifactContentDisposition string
    ArtifactContentLength string
    ArtifactContentMd5 string
    ArtifactLastModified string
    PipelineStepArtifact string
    StepName string
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
    artifactContentDisposition String
    artifactContentLength String
    artifactContentMd5 String
    artifactLastModified String
    pipelineStepArtifact String
    stepName String
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
    artifactContentDisposition string
    artifactContentLength string
    artifactContentMd5 string
    artifactLastModified string
    pipelineStepArtifact string
    stepName string
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
    artifact_content_disposition str
    artifact_content_length str
    artifact_content_md5 str
    artifact_last_modified str
    pipeline_step_artifact str
    step_name str
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
    artifactContentDisposition String
    artifactContentLength String
    artifactContentMd5 String
    artifactLastModified String
    pipelineStepArtifact String
    stepName String
    The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.

    GetPipelinesPipelineStepDetail

    DependsOns List<string>
    The list of step names this current step depends on for execution.
    Description string
    A short description of the step.
    IsArtifactUploaded bool
    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.
    StepConfigurationDetails List<GetPipelinesPipelineStepDetailStepConfigurationDetail>
    The configuration details of a step.
    StepInfrastructureConfigurationDetails List<GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail>
    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.
    StepType string
    The type of step.
    DependsOns []string
    The list of step names this current step depends on for execution.
    Description string
    A short description of the step.
    IsArtifactUploaded bool
    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.
    StepConfigurationDetails []GetPipelinesPipelineStepDetailStepConfigurationDetail
    The configuration details of a step.
    StepInfrastructureConfigurationDetails []GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail
    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.
    StepType string
    The type of step.
    dependsOns List<String>
    The list of step names this current step depends on for execution.
    description String
    A short description of the step.
    isArtifactUploaded Boolean
    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.
    stepConfigurationDetails List<GetPipelinesPipelineStepDetailStepConfigurationDetail>
    The configuration details of a step.
    stepInfrastructureConfigurationDetails List<GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail>
    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.
    stepType String
    The type of step.
    dependsOns string[]
    The list of step names this current step depends on for execution.
    description string
    A short description of the step.
    isArtifactUploaded boolean
    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.
    stepConfigurationDetails GetPipelinesPipelineStepDetailStepConfigurationDetail[]
    The configuration details of a step.
    stepInfrastructureConfigurationDetails GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail[]
    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.
    stepType string
    The type of 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_uploaded bool
    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_details Sequence[datascience.GetPipelinesPipelineStepDetailStepConfigurationDetail]
    The configuration details of a step.
    step_infrastructure_configuration_details Sequence[datascience.GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail]
    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_type str
    The type of step.
    dependsOns List<String>
    The list of step names this current step depends on for execution.
    description String
    A short description of the step.
    isArtifactUploaded Boolean
    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.
    stepConfigurationDetails List<Property Map>
    The configuration details of a step.
    stepInfrastructureConfigurationDetails List<Property Map>
    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.
    stepType String
    The type of step.

    GetPipelinesPipelineStepDetailStepConfigurationDetail

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

    GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail

    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    ShapeConfigDetails List<GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail>
    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.
    BlockStorageSizeInGbs int
    The size of the block storage volume to attach to the instance.
    ShapeConfigDetails []GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail
    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.
    blockStorageSizeInGbs Integer
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails List<GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail>
    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.
    blockStorageSizeInGbs number
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail[]
    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.
    block_storage_size_in_gbs int
    The size of the block storage volume to attach to the instance.
    shape_config_details Sequence[datascience.GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail]
    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.
    blockStorageSizeInGbs Number
    The size of the block storage volume to attach to the instance.
    shapeConfigDetails List<Property Map>
    Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
    shapeName String
    The shape used to launch the instance for all step runs in the pipeline.

    GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi