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

oci.DataScience.getPipelineRun

Explore with Pulumi AI

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

    This data source provides details about a specific Pipeline Run resource in Oracle Cloud Infrastructure Data Science service.

    Gets a PipelineRun by identifier.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testPipelineRun = oci.DataScience.getPipelineRun({
        pipelineRunId: oci_datascience_pipeline_run.test_pipeline_run.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_pipeline_run = oci.DataScience.get_pipeline_run(pipeline_run_id=oci_datascience_pipeline_run["test_pipeline_run"]["id"])
    
    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.GetPipelineRun(ctx, &datascience.GetPipelineRunArgs{
    			PipelineRunId: oci_datascience_pipeline_run.Test_pipeline_run.Id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testPipelineRun = Oci.DataScience.GetPipelineRun.Invoke(new()
        {
            PipelineRunId = oci_datascience_pipeline_run.Test_pipeline_run.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataScience.DataScienceFunctions;
    import com.pulumi.oci.DataScience.inputs.GetPipelineRunArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testPipelineRun = DataScienceFunctions.getPipelineRun(GetPipelineRunArgs.builder()
                .pipelineRunId(oci_datascience_pipeline_run.test_pipeline_run().id())
                .build());
    
        }
    }
    
    variables:
      testPipelineRun:
        fn::invoke:
          Function: oci:DataScience:getPipelineRun
          Arguments:
            pipelineRunId: ${oci_datascience_pipeline_run.test_pipeline_run.id}
    

    Using getPipelineRun

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getPipelineRun(args: GetPipelineRunArgs, opts?: InvokeOptions): Promise<GetPipelineRunResult>
    function getPipelineRunOutput(args: GetPipelineRunOutputArgs, opts?: InvokeOptions): Output<GetPipelineRunResult>
    def get_pipeline_run(pipeline_run_id: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetPipelineRunResult
    def get_pipeline_run_output(pipeline_run_id: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetPipelineRunResult]
    func GetPipelineRun(ctx *Context, args *GetPipelineRunArgs, opts ...InvokeOption) (*GetPipelineRunResult, error)
    func GetPipelineRunOutput(ctx *Context, args *GetPipelineRunOutputArgs, opts ...InvokeOption) GetPipelineRunResultOutput

    > Note: This function is named GetPipelineRun in the Go SDK.

    public static class GetPipelineRun 
    {
        public static Task<GetPipelineRunResult> InvokeAsync(GetPipelineRunArgs args, InvokeOptions? opts = null)
        public static Output<GetPipelineRunResult> Invoke(GetPipelineRunInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPipelineRunResult> getPipelineRun(GetPipelineRunArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataScience/getPipelineRun:getPipelineRun
      arguments:
        # arguments dictionary

    The following arguments are supported:

    PipelineRunId string
    The OCID of the pipeline run.
    PipelineRunId string
    The OCID of the pipeline run.
    pipelineRunId String
    The OCID of the pipeline run.
    pipelineRunId string
    The OCID of the pipeline run.
    pipeline_run_id str
    The OCID of the pipeline run.
    pipelineRunId String
    The OCID of the pipeline run.

    getPipelineRun Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    ConfigurationDetails List<GetPipelineRunConfigurationDetail>
    The configuration details of a pipeline.
    ConfigurationOverrideDetails List<GetPipelineRunConfigurationOverrideDetail>
    The configuration details of a pipeline.
    CreatedBy string
    The OCID of the user who created the pipeline run.
    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"}
    DeleteRelatedJobRuns bool
    DisplayName string
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    LifecycleDetails string
    Details of the state of the step run.
    LogConfigurationOverrideDetails List<GetPipelineRunLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    LogDetails List<GetPipelineRunLogDetail>
    Customer logging details for pipeline run.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    PipelineRunId string
    ProjectId string
    The OCID of the project to associate the pipeline run with.
    State string
    The state of the step run.
    StepOverrideDetails List<GetPipelineRunStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    StepRuns List<GetPipelineRunStepRun>
    Array of StepRun object 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"}
    TimeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    ConfigurationDetails []GetPipelineRunConfigurationDetail
    The configuration details of a pipeline.
    ConfigurationOverrideDetails []GetPipelineRunConfigurationOverrideDetail
    The configuration details of a pipeline.
    CreatedBy string
    The OCID of the user who created the pipeline run.
    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"}
    DeleteRelatedJobRuns bool
    DisplayName string
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    LifecycleDetails string
    Details of the state of the step run.
    LogConfigurationOverrideDetails []GetPipelineRunLogConfigurationOverrideDetail
    The pipeline log configuration details.
    LogDetails []GetPipelineRunLogDetail
    Customer logging details for pipeline run.
    PipelineId string
    The OCID of the pipeline for which pipeline run is created.
    PipelineRunId string
    ProjectId string
    The OCID of the project to associate the pipeline run with.
    State string
    The state of the step run.
    StepOverrideDetails []GetPipelineRunStepOverrideDetail
    Array of step override details. Only Step Configuration is allowed to be overridden.
    StepRuns []GetPipelineRunStepRun
    Array of StepRun object 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"}
    TimeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    TimeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId String
    The OCID of the compartment where you want to create the pipeline run.
    configurationDetails List<GetPipelineRunConfigurationDetail>
    The configuration details of a pipeline.
    configurationOverrideDetails List<GetPipelineRunConfigurationOverrideDetail>
    The configuration details of a pipeline.
    createdBy String
    The OCID of the user who created the pipeline run.
    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"}
    deleteRelatedJobRuns Boolean
    displayName String
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    lifecycleDetails String
    Details of the state of the step run.
    logConfigurationOverrideDetails List<GetPipelineRunLogConfigurationOverrideDetail>
    The pipeline log configuration details.
    logDetails List<GetPipelineRunLogDetail>
    Customer logging details for pipeline run.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    pipelineRunId String
    projectId String
    The OCID of the project to associate the pipeline run with.
    state String
    The state of the step run.
    stepOverrideDetails List<GetPipelineRunStepOverrideDetail>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns List<GetPipelineRunStepRun>
    Array of StepRun object 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"}
    timeAccepted String
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId string
    The OCID of the compartment where you want to create the pipeline run.
    configurationDetails GetPipelineRunConfigurationDetail[]
    The configuration details of a pipeline.
    configurationOverrideDetails GetPipelineRunConfigurationOverrideDetail[]
    The configuration details of a pipeline.
    createdBy string
    The OCID of the user who created the pipeline run.
    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"}
    deleteRelatedJobRuns boolean
    displayName string
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    lifecycleDetails string
    Details of the state of the step run.
    logConfigurationOverrideDetails GetPipelineRunLogConfigurationOverrideDetail[]
    The pipeline log configuration details.
    logDetails GetPipelineRunLogDetail[]
    Customer logging details for pipeline run.
    pipelineId string
    The OCID of the pipeline for which pipeline run is created.
    pipelineRunId string
    projectId string
    The OCID of the project to associate the pipeline run with.
    state string
    The state of the step run.
    stepOverrideDetails GetPipelineRunStepOverrideDetail[]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns GetPipelineRunStepRun[]
    Array of StepRun object 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"}
    timeAccepted string
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated string
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartment_id str
    The OCID of the compartment where you want to create the pipeline run.
    configuration_details Sequence[datascience.GetPipelineRunConfigurationDetail]
    The configuration details of a pipeline.
    configuration_override_details Sequence[datascience.GetPipelineRunConfigurationOverrideDetail]
    The configuration details of a pipeline.
    created_by str
    The OCID of the user who created the pipeline run.
    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_job_runs bool
    display_name str
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    lifecycle_details str
    Details of the state of the step run.
    log_configuration_override_details Sequence[datascience.GetPipelineRunLogConfigurationOverrideDetail]
    The pipeline log configuration details.
    log_details Sequence[datascience.GetPipelineRunLogDetail]
    Customer logging details for pipeline run.
    pipeline_id str
    The OCID of the pipeline for which pipeline run is created.
    pipeline_run_id str
    project_id str
    The OCID of the project to associate the pipeline run with.
    state str
    The state of the step run.
    step_override_details Sequence[datascience.GetPipelineRunStepOverrideDetail]
    Array of step override details. Only Step Configuration is allowed to be overridden.
    step_runs Sequence[datascience.GetPipelineRunStepRun]
    Array of StepRun object 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_accepted str
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    time_finished str
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    time_started str
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    time_updated str
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
    compartmentId String
    The OCID of the compartment where you want to create the pipeline run.
    configurationDetails List<Property Map>
    The configuration details of a pipeline.
    configurationOverrideDetails List<Property Map>
    The configuration details of a pipeline.
    createdBy String
    The OCID of the user who created the pipeline run.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
    deleteRelatedJobRuns Boolean
    displayName String
    A user-friendly display name for the resource.
    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
    The OCID of the pipeline run.
    lifecycleDetails String
    Details of the state of the step run.
    logConfigurationOverrideDetails List<Property Map>
    The pipeline log configuration details.
    logDetails List<Property Map>
    Customer logging details for pipeline run.
    pipelineId String
    The OCID of the pipeline for which pipeline run is created.
    pipelineRunId String
    projectId String
    The OCID of the project to associate the pipeline run with.
    state String
    The state of the step run.
    stepOverrideDetails List<Property Map>
    Array of step override details. Only Step Configuration is allowed to be overridden.
    stepRuns List<Property Map>
    Array of StepRun object 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"}
    timeAccepted String
    The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    timeUpdated String
    The date and time the pipeline run was updated in the timestamp format defined by RFC3339.

    Supporting Types

    GetPipelineRunConfigurationDetail

    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.

    GetPipelineRunConfigurationOverrideDetail

    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.

    GetPipelineRunLogConfigurationOverrideDetail

    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 log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    LogId string
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId string
    The log id of the log object the pipeline run logs will be shipped to.
    enable_auto_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 log group id for where log objects will be for pipeline runs.
    log_id str
    The log id of the log object the pipeline run logs will be shipped to.
    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 log group id for where log objects will be for pipeline runs.
    logId String
    The log id of the log object the pipeline run logs will be shipped to.

    GetPipelineRunLogDetail

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

    GetPipelineRunStepOverrideDetail

    StepConfigurationDetails List<GetPipelineRunStepOverrideDetailStepConfigurationDetail>
    The configuration details of a step.
    StepName string
    The name of the step.
    StepConfigurationDetails []GetPipelineRunStepOverrideDetailStepConfigurationDetail
    The configuration details of a step.
    StepName string
    The name of the step.
    stepConfigurationDetails List<GetPipelineRunStepOverrideDetailStepConfigurationDetail>
    The configuration details of a step.
    stepName String
    The name of the step.
    stepConfigurationDetails GetPipelineRunStepOverrideDetailStepConfigurationDetail[]
    The configuration details of a step.
    stepName string
    The name of the step.
    stepConfigurationDetails List<Property Map>
    The configuration details of a step.
    stepName String
    The name of the step.

    GetPipelineRunStepOverrideDetailStepConfigurationDetail

    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.

    GetPipelineRunStepRun

    JobRunId string
    The OCID of the job run triggered for this step run.
    LifecycleDetails string
    Details of the state of the step run.
    State string
    The state of the step run.
    StepName string
    The name of the step.
    StepType string
    The type of step.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    JobRunId string
    The OCID of the job run triggered for this step run.
    LifecycleDetails string
    Details of the state of the step run.
    State string
    The state of the step run.
    StepName string
    The name of the step.
    StepType string
    The type of step.
    TimeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    TimeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    jobRunId String
    The OCID of the job run triggered for this step run.
    lifecycleDetails String
    Details of the state of the step run.
    state String
    The state of the step run.
    stepName String
    The name of the step.
    stepType String
    The type of step.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    jobRunId string
    The OCID of the job run triggered for this step run.
    lifecycleDetails string
    Details of the state of the step run.
    state string
    The state of the step run.
    stepName string
    The name of the step.
    stepType string
    The type of step.
    timeFinished string
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted string
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    job_run_id str
    The OCID of the job run triggered for this step run.
    lifecycle_details str
    Details of the state of the step run.
    state str
    The state of the step run.
    step_name str
    The name of the step.
    step_type str
    The type of step.
    time_finished str
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    time_started str
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
    jobRunId String
    The OCID of the job run triggered for this step run.
    lifecycleDetails String
    Details of the state of the step run.
    state String
    The state of the step run.
    stepName String
    The name of the step.
    stepType String
    The type of step.
    timeFinished String
    The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
    timeStarted String
    The date and time the pipeline run request was started in the timestamp format defined by RFC3339.

    Package Details

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