oci.DataScience.PipelineRun
Explore with Pulumi AI
This resource provides the Pipeline Run resource in Oracle Cloud Infrastructure Data Science service.
Creates a new PipelineRun.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPipelineRun = new oci.datascience.PipelineRun("test_pipeline_run", {
compartmentId: compartmentId,
pipelineId: testPipeline.id,
configurationOverrideDetails: {
type: pipelineRunConfigurationOverrideDetailsType,
commandLineArguments: pipelineRunConfigurationOverrideDetailsCommandLineArguments,
environmentVariables: pipelineRunConfigurationOverrideDetailsEnvironmentVariables,
maximumRuntimeInMinutes: pipelineRunConfigurationOverrideDetailsMaximumRuntimeInMinutes,
},
definedTags: {
"Operations.CostCenter": "42",
},
displayName: pipelineRunDisplayName,
freeformTags: {
Department: "Finance",
},
logConfigurationOverrideDetails: {
enableAutoLogCreation: pipelineRunLogConfigurationOverrideDetailsEnableAutoLogCreation,
enableLogging: pipelineRunLogConfigurationOverrideDetailsEnableLogging,
logGroupId: testLogGroup.id,
logId: testLog.id,
},
opcParentRptUrl: pipelineRunOpcParentRptUrl,
projectId: testProject.id,
stepOverrideDetails: [{
stepConfigurationDetails: {
commandLineArguments: pipelineRunStepOverrideDetailsStepConfigurationDetailsCommandLineArguments,
environmentVariables: pipelineRunStepOverrideDetailsStepConfigurationDetailsEnvironmentVariables,
maximumRuntimeInMinutes: pipelineRunStepOverrideDetailsStepConfigurationDetailsMaximumRuntimeInMinutes,
},
stepName: pipelineRunStepOverrideDetailsStepName,
stepContainerConfigurationDetails: {
containerType: pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsContainerType,
image: pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImage,
cmds: pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsCmd,
entrypoints: pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsEntrypoint,
imageDigest: pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImageDigest,
imageSignatureId: testImageSignature.id,
},
stepDataflowConfigurationDetails: {
configuration: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsConfiguration,
driverShape: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShape,
driverShapeConfigDetails: {
memoryInGbs: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsMemoryInGbs,
ocpus: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsOcpus,
},
executorShape: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShape,
executorShapeConfigDetails: {
memoryInGbs: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsMemoryInGbs,
ocpus: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsOcpus,
},
logsBucketUri: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsLogsBucketUri,
numExecutors: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsNumExecutors,
warehouseBucketUri: pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsWarehouseBucketUri,
},
}],
systemTags: pipelineRunSystemTags,
});
import pulumi
import pulumi_oci as oci
test_pipeline_run = oci.data_science.PipelineRun("test_pipeline_run",
compartment_id=compartment_id,
pipeline_id=test_pipeline["id"],
configuration_override_details={
"type": pipeline_run_configuration_override_details_type,
"command_line_arguments": pipeline_run_configuration_override_details_command_line_arguments,
"environment_variables": pipeline_run_configuration_override_details_environment_variables,
"maximum_runtime_in_minutes": pipeline_run_configuration_override_details_maximum_runtime_in_minutes,
},
defined_tags={
"Operations.CostCenter": "42",
},
display_name=pipeline_run_display_name,
freeform_tags={
"Department": "Finance",
},
log_configuration_override_details={
"enable_auto_log_creation": pipeline_run_log_configuration_override_details_enable_auto_log_creation,
"enable_logging": pipeline_run_log_configuration_override_details_enable_logging,
"log_group_id": test_log_group["id"],
"log_id": test_log["id"],
},
opc_parent_rpt_url=pipeline_run_opc_parent_rpt_url,
project_id=test_project["id"],
step_override_details=[{
"step_configuration_details": {
"command_line_arguments": pipeline_run_step_override_details_step_configuration_details_command_line_arguments,
"environment_variables": pipeline_run_step_override_details_step_configuration_details_environment_variables,
"maximum_runtime_in_minutes": pipeline_run_step_override_details_step_configuration_details_maximum_runtime_in_minutes,
},
"step_name": pipeline_run_step_override_details_step_name,
"step_container_configuration_details": {
"container_type": pipeline_run_step_override_details_step_container_configuration_details_container_type,
"image": pipeline_run_step_override_details_step_container_configuration_details_image,
"cmds": pipeline_run_step_override_details_step_container_configuration_details_cmd,
"entrypoints": pipeline_run_step_override_details_step_container_configuration_details_entrypoint,
"image_digest": pipeline_run_step_override_details_step_container_configuration_details_image_digest,
"image_signature_id": test_image_signature["id"],
},
"step_dataflow_configuration_details": {
"configuration": pipeline_run_step_override_details_step_dataflow_configuration_details_configuration,
"driver_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape,
"driver_shape_config_details": {
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_memory_in_gbs,
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_ocpus,
},
"executor_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape,
"executor_shape_config_details": {
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_memory_in_gbs,
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_ocpus,
},
"logs_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_logs_bucket_uri,
"num_executors": pipeline_run_step_override_details_step_dataflow_configuration_details_num_executors,
"warehouse_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_warehouse_bucket_uri,
},
}],
system_tags=pipeline_run_system_tags)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datascience.NewPipelineRun(ctx, "test_pipeline_run", &datascience.PipelineRunArgs{
CompartmentId: pulumi.Any(compartmentId),
PipelineId: pulumi.Any(testPipeline.Id),
ConfigurationOverrideDetails: &datascience.PipelineRunConfigurationOverrideDetailsArgs{
Type: pulumi.Any(pipelineRunConfigurationOverrideDetailsType),
CommandLineArguments: pulumi.Any(pipelineRunConfigurationOverrideDetailsCommandLineArguments),
EnvironmentVariables: pulumi.Any(pipelineRunConfigurationOverrideDetailsEnvironmentVariables),
MaximumRuntimeInMinutes: pulumi.Any(pipelineRunConfigurationOverrideDetailsMaximumRuntimeInMinutes),
},
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(pipelineRunDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
LogConfigurationOverrideDetails: &datascience.PipelineRunLogConfigurationOverrideDetailsArgs{
EnableAutoLogCreation: pulumi.Any(pipelineRunLogConfigurationOverrideDetailsEnableAutoLogCreation),
EnableLogging: pulumi.Any(pipelineRunLogConfigurationOverrideDetailsEnableLogging),
LogGroupId: pulumi.Any(testLogGroup.Id),
LogId: pulumi.Any(testLog.Id),
},
OpcParentRptUrl: pulumi.Any(pipelineRunOpcParentRptUrl),
ProjectId: pulumi.Any(testProject.Id),
StepOverrideDetails: datascience.PipelineRunStepOverrideDetailArray{
&datascience.PipelineRunStepOverrideDetailArgs{
StepConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs{
CommandLineArguments: pulumi.Any(pipelineRunStepOverrideDetailsStepConfigurationDetailsCommandLineArguments),
EnvironmentVariables: pulumi.Any(pipelineRunStepOverrideDetailsStepConfigurationDetailsEnvironmentVariables),
MaximumRuntimeInMinutes: pulumi.Any(pipelineRunStepOverrideDetailsStepConfigurationDetailsMaximumRuntimeInMinutes),
},
StepName: pulumi.Any(pipelineRunStepOverrideDetailsStepName),
StepContainerConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs{
ContainerType: pulumi.Any(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsContainerType),
Image: pulumi.Any(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImage),
Cmds: pulumi.Any(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsCmd),
Entrypoints: pulumi.Any(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsEntrypoint),
ImageDigest: pulumi.Any(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImageDigest),
ImageSignatureId: pulumi.Any(testImageSignature.Id),
},
StepDataflowConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs{
Configuration: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsConfiguration),
DriverShape: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShape),
DriverShapeConfigDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs{
MemoryInGbs: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsMemoryInGbs),
Ocpus: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsOcpus),
},
ExecutorShape: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShape),
ExecutorShapeConfigDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs{
MemoryInGbs: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsMemoryInGbs),
Ocpus: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsOcpus),
},
LogsBucketUri: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsLogsBucketUri),
NumExecutors: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsNumExecutors),
WarehouseBucketUri: pulumi.Any(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsWarehouseBucketUri),
},
},
},
SystemTags: pulumi.Any(pipelineRunSystemTags),
})
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 = new Oci.DataScience.PipelineRun("test_pipeline_run", new()
{
CompartmentId = compartmentId,
PipelineId = testPipeline.Id,
ConfigurationOverrideDetails = new Oci.DataScience.Inputs.PipelineRunConfigurationOverrideDetailsArgs
{
Type = pipelineRunConfigurationOverrideDetailsType,
CommandLineArguments = pipelineRunConfigurationOverrideDetailsCommandLineArguments,
EnvironmentVariables = pipelineRunConfigurationOverrideDetailsEnvironmentVariables,
MaximumRuntimeInMinutes = pipelineRunConfigurationOverrideDetailsMaximumRuntimeInMinutes,
},
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = pipelineRunDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
LogConfigurationOverrideDetails = new Oci.DataScience.Inputs.PipelineRunLogConfigurationOverrideDetailsArgs
{
EnableAutoLogCreation = pipelineRunLogConfigurationOverrideDetailsEnableAutoLogCreation,
EnableLogging = pipelineRunLogConfigurationOverrideDetailsEnableLogging,
LogGroupId = testLogGroup.Id,
LogId = testLog.Id,
},
OpcParentRptUrl = pipelineRunOpcParentRptUrl,
ProjectId = testProject.Id,
StepOverrideDetails = new[]
{
new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailArgs
{
StepConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs
{
CommandLineArguments = pipelineRunStepOverrideDetailsStepConfigurationDetailsCommandLineArguments,
EnvironmentVariables = pipelineRunStepOverrideDetailsStepConfigurationDetailsEnvironmentVariables,
MaximumRuntimeInMinutes = pipelineRunStepOverrideDetailsStepConfigurationDetailsMaximumRuntimeInMinutes,
},
StepName = pipelineRunStepOverrideDetailsStepName,
StepContainerConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs
{
ContainerType = pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsContainerType,
Image = pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImage,
Cmds = pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsCmd,
Entrypoints = pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsEntrypoint,
ImageDigest = pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImageDigest,
ImageSignatureId = testImageSignature.Id,
},
StepDataflowConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs
{
Configuration = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsConfiguration,
DriverShape = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShape,
DriverShapeConfigDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs
{
MemoryInGbs = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsMemoryInGbs,
Ocpus = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsOcpus,
},
ExecutorShape = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShape,
ExecutorShapeConfigDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs
{
MemoryInGbs = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsMemoryInGbs,
Ocpus = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsOcpus,
},
LogsBucketUri = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsLogsBucketUri,
NumExecutors = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsNumExecutors,
WarehouseBucketUri = pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsWarehouseBucketUri,
},
},
},
SystemTags = pipelineRunSystemTags,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataScience.PipelineRun;
import com.pulumi.oci.DataScience.PipelineRunArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunConfigurationOverrideDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunLogConfigurationOverrideDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs;
import com.pulumi.oci.DataScience.inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs;
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) {
var testPipelineRun = new PipelineRun("testPipelineRun", PipelineRunArgs.builder()
.compartmentId(compartmentId)
.pipelineId(testPipeline.id())
.configurationOverrideDetails(PipelineRunConfigurationOverrideDetailsArgs.builder()
.type(pipelineRunConfigurationOverrideDetailsType)
.commandLineArguments(pipelineRunConfigurationOverrideDetailsCommandLineArguments)
.environmentVariables(pipelineRunConfigurationOverrideDetailsEnvironmentVariables)
.maximumRuntimeInMinutes(pipelineRunConfigurationOverrideDetailsMaximumRuntimeInMinutes)
.build())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(pipelineRunDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.logConfigurationOverrideDetails(PipelineRunLogConfigurationOverrideDetailsArgs.builder()
.enableAutoLogCreation(pipelineRunLogConfigurationOverrideDetailsEnableAutoLogCreation)
.enableLogging(pipelineRunLogConfigurationOverrideDetailsEnableLogging)
.logGroupId(testLogGroup.id())
.logId(testLog.id())
.build())
.opcParentRptUrl(pipelineRunOpcParentRptUrl)
.projectId(testProject.id())
.stepOverrideDetails(PipelineRunStepOverrideDetailArgs.builder()
.stepConfigurationDetails(PipelineRunStepOverrideDetailStepConfigurationDetailsArgs.builder()
.commandLineArguments(pipelineRunStepOverrideDetailsStepConfigurationDetailsCommandLineArguments)
.environmentVariables(pipelineRunStepOverrideDetailsStepConfigurationDetailsEnvironmentVariables)
.maximumRuntimeInMinutes(pipelineRunStepOverrideDetailsStepConfigurationDetailsMaximumRuntimeInMinutes)
.build())
.stepName(pipelineRunStepOverrideDetailsStepName)
.stepContainerConfigurationDetails(PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs.builder()
.containerType(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsContainerType)
.image(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImage)
.cmds(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsCmd)
.entrypoints(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsEntrypoint)
.imageDigest(pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImageDigest)
.imageSignatureId(testImageSignature.id())
.build())
.stepDataflowConfigurationDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs.builder()
.configuration(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsConfiguration)
.driverShape(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShape)
.driverShapeConfigDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs.builder()
.memoryInGbs(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsMemoryInGbs)
.ocpus(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsOcpus)
.build())
.executorShape(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShape)
.executorShapeConfigDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs.builder()
.memoryInGbs(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsMemoryInGbs)
.ocpus(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsOcpus)
.build())
.logsBucketUri(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsLogsBucketUri)
.numExecutors(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsNumExecutors)
.warehouseBucketUri(pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsWarehouseBucketUri)
.build())
.build())
.systemTags(pipelineRunSystemTags)
.build());
}
}
resources:
testPipelineRun:
type: oci:DataScience:PipelineRun
name: test_pipeline_run
properties:
compartmentId: ${compartmentId}
pipelineId: ${testPipeline.id}
configurationOverrideDetails:
type: ${pipelineRunConfigurationOverrideDetailsType}
commandLineArguments: ${pipelineRunConfigurationOverrideDetailsCommandLineArguments}
environmentVariables: ${pipelineRunConfigurationOverrideDetailsEnvironmentVariables}
maximumRuntimeInMinutes: ${pipelineRunConfigurationOverrideDetailsMaximumRuntimeInMinutes}
definedTags:
Operations.CostCenter: '42'
displayName: ${pipelineRunDisplayName}
freeformTags:
Department: Finance
logConfigurationOverrideDetails:
enableAutoLogCreation: ${pipelineRunLogConfigurationOverrideDetailsEnableAutoLogCreation}
enableLogging: ${pipelineRunLogConfigurationOverrideDetailsEnableLogging}
logGroupId: ${testLogGroup.id}
logId: ${testLog.id}
opcParentRptUrl: ${pipelineRunOpcParentRptUrl}
projectId: ${testProject.id}
stepOverrideDetails:
- stepConfigurationDetails:
commandLineArguments: ${pipelineRunStepOverrideDetailsStepConfigurationDetailsCommandLineArguments}
environmentVariables: ${pipelineRunStepOverrideDetailsStepConfigurationDetailsEnvironmentVariables}
maximumRuntimeInMinutes: ${pipelineRunStepOverrideDetailsStepConfigurationDetailsMaximumRuntimeInMinutes}
stepName: ${pipelineRunStepOverrideDetailsStepName}
stepContainerConfigurationDetails:
containerType: ${pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsContainerType}
image: ${pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImage}
cmds: ${pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsCmd}
entrypoints: ${pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsEntrypoint}
imageDigest: ${pipelineRunStepOverrideDetailsStepContainerConfigurationDetailsImageDigest}
imageSignatureId: ${testImageSignature.id}
stepDataflowConfigurationDetails:
configuration: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsConfiguration}
driverShape: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShape}
driverShapeConfigDetails:
memoryInGbs: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsMemoryInGbs}
ocpus: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsDriverShapeConfigDetailsOcpus}
executorShape: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShape}
executorShapeConfigDetails:
memoryInGbs: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsMemoryInGbs}
ocpus: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsExecutorShapeConfigDetailsOcpus}
logsBucketUri: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsLogsBucketUri}
numExecutors: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsNumExecutors}
warehouseBucketUri: ${pipelineRunStepOverrideDetailsStepDataflowConfigurationDetailsWarehouseBucketUri}
systemTags: ${pipelineRunSystemTags}
Create PipelineRun Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PipelineRun(name: string, args: PipelineRunArgs, opts?: CustomResourceOptions);
@overload
def PipelineRun(resource_name: str,
args: PipelineRunArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PipelineRun(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
pipeline_id: Optional[str] = None,
project_id: Optional[str] = None,
configuration_override_details: Optional[_datascience.PipelineRunConfigurationOverrideDetailsArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
delete_related_job_runs: Optional[bool] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
log_configuration_override_details: Optional[_datascience.PipelineRunLogConfigurationOverrideDetailsArgs] = None,
opc_parent_rpt_url: Optional[str] = None,
step_override_details: Optional[Sequence[_datascience.PipelineRunStepOverrideDetailArgs]] = None,
system_tags: Optional[Mapping[str, str]] = None)
func NewPipelineRun(ctx *Context, name string, args PipelineRunArgs, opts ...ResourceOption) (*PipelineRun, error)
public PipelineRun(string name, PipelineRunArgs args, CustomResourceOptions? opts = null)
public PipelineRun(String name, PipelineRunArgs args)
public PipelineRun(String name, PipelineRunArgs args, CustomResourceOptions options)
type: oci:DataScience:PipelineRun
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. PipelineRunArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. PipelineRunArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. PipelineRunArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. PipelineRunArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. PipelineRunArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var pipelineRunResource = new Oci.DataScience.PipelineRun("pipelineRunResource", new()
{
CompartmentId = "string",
PipelineId = "string",
ProjectId = "string",
ConfigurationOverrideDetails = new Oci.DataScience.Inputs.PipelineRunConfigurationOverrideDetailsArgs
{
Type = "string",
CommandLineArguments = "string",
EnvironmentVariables =
{
{ "string", "string" },
},
MaximumRuntimeInMinutes = "string",
},
DefinedTags =
{
{ "string", "string" },
},
DeleteRelatedJobRuns = false,
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
LogConfigurationOverrideDetails = new Oci.DataScience.Inputs.PipelineRunLogConfigurationOverrideDetailsArgs
{
EnableAutoLogCreation = false,
EnableLogging = false,
LogGroupId = "string",
LogId = "string",
},
OpcParentRptUrl = "string",
StepOverrideDetails = new[]
{
new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailArgs
{
StepConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs
{
CommandLineArguments = "string",
EnvironmentVariables =
{
{ "string", "string" },
},
MaximumRuntimeInMinutes = "string",
},
StepName = "string",
StepContainerConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs
{
ContainerType = "string",
Image = "string",
Cmds = new[]
{
"string",
},
Entrypoints = new[]
{
"string",
},
ImageDigest = "string",
ImageSignatureId = "string",
},
StepDataflowConfigurationDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs
{
Configuration =
{
{ "string", "string" },
},
DriverShape = "string",
DriverShapeConfigDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs
{
MemoryInGbs = 0,
Ocpus = 0,
},
ExecutorShape = "string",
ExecutorShapeConfigDetails = new Oci.DataScience.Inputs.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs
{
MemoryInGbs = 0,
Ocpus = 0,
},
LogsBucketUri = "string",
NumExecutors = 0,
WarehouseBucketUri = "string",
},
},
},
SystemTags =
{
{ "string", "string" },
},
});
example, err := DataScience.NewPipelineRun(ctx, "pipelineRunResource", &DataScience.PipelineRunArgs{
CompartmentId: pulumi.String("string"),
PipelineId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
ConfigurationOverrideDetails: &datascience.PipelineRunConfigurationOverrideDetailsArgs{
Type: pulumi.String("string"),
CommandLineArguments: pulumi.String("string"),
EnvironmentVariables: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaximumRuntimeInMinutes: pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DeleteRelatedJobRuns: pulumi.Bool(false),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
LogConfigurationOverrideDetails: &datascience.PipelineRunLogConfigurationOverrideDetailsArgs{
EnableAutoLogCreation: pulumi.Bool(false),
EnableLogging: pulumi.Bool(false),
LogGroupId: pulumi.String("string"),
LogId: pulumi.String("string"),
},
OpcParentRptUrl: pulumi.String("string"),
StepOverrideDetails: datascience.PipelineRunStepOverrideDetailArray{
&datascience.PipelineRunStepOverrideDetailArgs{
StepConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs{
CommandLineArguments: pulumi.String("string"),
EnvironmentVariables: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaximumRuntimeInMinutes: pulumi.String("string"),
},
StepName: pulumi.String("string"),
StepContainerConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs{
ContainerType: pulumi.String("string"),
Image: pulumi.String("string"),
Cmds: pulumi.StringArray{
pulumi.String("string"),
},
Entrypoints: pulumi.StringArray{
pulumi.String("string"),
},
ImageDigest: pulumi.String("string"),
ImageSignatureId: pulumi.String("string"),
},
StepDataflowConfigurationDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs{
Configuration: pulumi.StringMap{
"string": pulumi.String("string"),
},
DriverShape: pulumi.String("string"),
DriverShapeConfigDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs{
MemoryInGbs: pulumi.Float64(0),
Ocpus: pulumi.Float64(0),
},
ExecutorShape: pulumi.String("string"),
ExecutorShapeConfigDetails: &datascience.PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs{
MemoryInGbs: pulumi.Float64(0),
Ocpus: pulumi.Float64(0),
},
LogsBucketUri: pulumi.String("string"),
NumExecutors: pulumi.Int(0),
WarehouseBucketUri: pulumi.String("string"),
},
},
},
SystemTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var pipelineRunResource = new PipelineRun("pipelineRunResource", PipelineRunArgs.builder()
.compartmentId("string")
.pipelineId("string")
.projectId("string")
.configurationOverrideDetails(PipelineRunConfigurationOverrideDetailsArgs.builder()
.type("string")
.commandLineArguments("string")
.environmentVariables(Map.of("string", "string"))
.maximumRuntimeInMinutes("string")
.build())
.definedTags(Map.of("string", "string"))
.deleteRelatedJobRuns(false)
.displayName("string")
.freeformTags(Map.of("string", "string"))
.logConfigurationOverrideDetails(PipelineRunLogConfigurationOverrideDetailsArgs.builder()
.enableAutoLogCreation(false)
.enableLogging(false)
.logGroupId("string")
.logId("string")
.build())
.opcParentRptUrl("string")
.stepOverrideDetails(PipelineRunStepOverrideDetailArgs.builder()
.stepConfigurationDetails(PipelineRunStepOverrideDetailStepConfigurationDetailsArgs.builder()
.commandLineArguments("string")
.environmentVariables(Map.of("string", "string"))
.maximumRuntimeInMinutes("string")
.build())
.stepName("string")
.stepContainerConfigurationDetails(PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs.builder()
.containerType("string")
.image("string")
.cmds("string")
.entrypoints("string")
.imageDigest("string")
.imageSignatureId("string")
.build())
.stepDataflowConfigurationDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs.builder()
.configuration(Map.of("string", "string"))
.driverShape("string")
.driverShapeConfigDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs.builder()
.memoryInGbs(0)
.ocpus(0)
.build())
.executorShape("string")
.executorShapeConfigDetails(PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs.builder()
.memoryInGbs(0)
.ocpus(0)
.build())
.logsBucketUri("string")
.numExecutors(0)
.warehouseBucketUri("string")
.build())
.build())
.systemTags(Map.of("string", "string"))
.build());
pipeline_run_resource = oci.data_science.PipelineRun("pipelineRunResource",
compartment_id="string",
pipeline_id="string",
project_id="string",
configuration_override_details={
"type": "string",
"command_line_arguments": "string",
"environment_variables": {
"string": "string",
},
"maximum_runtime_in_minutes": "string",
},
defined_tags={
"string": "string",
},
delete_related_job_runs=False,
display_name="string",
freeform_tags={
"string": "string",
},
log_configuration_override_details={
"enable_auto_log_creation": False,
"enable_logging": False,
"log_group_id": "string",
"log_id": "string",
},
opc_parent_rpt_url="string",
step_override_details=[{
"step_configuration_details": {
"command_line_arguments": "string",
"environment_variables": {
"string": "string",
},
"maximum_runtime_in_minutes": "string",
},
"step_name": "string",
"step_container_configuration_details": {
"container_type": "string",
"image": "string",
"cmds": ["string"],
"entrypoints": ["string"],
"image_digest": "string",
"image_signature_id": "string",
},
"step_dataflow_configuration_details": {
"configuration": {
"string": "string",
},
"driver_shape": "string",
"driver_shape_config_details": {
"memory_in_gbs": 0,
"ocpus": 0,
},
"executor_shape": "string",
"executor_shape_config_details": {
"memory_in_gbs": 0,
"ocpus": 0,
},
"logs_bucket_uri": "string",
"num_executors": 0,
"warehouse_bucket_uri": "string",
},
}],
system_tags={
"string": "string",
})
const pipelineRunResource = new oci.datascience.PipelineRun("pipelineRunResource", {
compartmentId: "string",
pipelineId: "string",
projectId: "string",
configurationOverrideDetails: {
type: "string",
commandLineArguments: "string",
environmentVariables: {
string: "string",
},
maximumRuntimeInMinutes: "string",
},
definedTags: {
string: "string",
},
deleteRelatedJobRuns: false,
displayName: "string",
freeformTags: {
string: "string",
},
logConfigurationOverrideDetails: {
enableAutoLogCreation: false,
enableLogging: false,
logGroupId: "string",
logId: "string",
},
opcParentRptUrl: "string",
stepOverrideDetails: [{
stepConfigurationDetails: {
commandLineArguments: "string",
environmentVariables: {
string: "string",
},
maximumRuntimeInMinutes: "string",
},
stepName: "string",
stepContainerConfigurationDetails: {
containerType: "string",
image: "string",
cmds: ["string"],
entrypoints: ["string"],
imageDigest: "string",
imageSignatureId: "string",
},
stepDataflowConfigurationDetails: {
configuration: {
string: "string",
},
driverShape: "string",
driverShapeConfigDetails: {
memoryInGbs: 0,
ocpus: 0,
},
executorShape: "string",
executorShapeConfigDetails: {
memoryInGbs: 0,
ocpus: 0,
},
logsBucketUri: "string",
numExecutors: 0,
warehouseBucketUri: "string",
},
}],
systemTags: {
string: "string",
},
});
type: oci:DataScience:PipelineRun
properties:
compartmentId: string
configurationOverrideDetails:
commandLineArguments: string
environmentVariables:
string: string
maximumRuntimeInMinutes: string
type: string
definedTags:
string: string
deleteRelatedJobRuns: false
displayName: string
freeformTags:
string: string
logConfigurationOverrideDetails:
enableAutoLogCreation: false
enableLogging: false
logGroupId: string
logId: string
opcParentRptUrl: string
pipelineId: string
projectId: string
stepOverrideDetails:
- stepConfigurationDetails:
commandLineArguments: string
environmentVariables:
string: string
maximumRuntimeInMinutes: string
stepContainerConfigurationDetails:
cmds:
- string
containerType: string
entrypoints:
- string
image: string
imageDigest: string
imageSignatureId: string
stepDataflowConfigurationDetails:
configuration:
string: string
driverShape: string
driverShapeConfigDetails:
memoryInGbs: 0
ocpus: 0
executorShape: string
executorShapeConfigDetails:
memoryInGbs: 0
ocpus: 0
logsBucketUri: string
numExecutors: 0
warehouseBucketUri: string
stepName: string
systemTags:
string: string
PipelineRun Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PipelineRun resource accepts the following input properties:
- Compartment
Id This property is required. string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Pipeline
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- Project
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- Configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- Display
Name string - (Updatable) A user-friendly display name for the resource.
- Dictionary<string, string>
- (Updatable) 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"}
- Log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- Opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- Step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id This property is required. string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Pipeline
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- Project
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- Configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details Args - The configuration details of a pipeline.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- Display
Name string - (Updatable) A user-friendly display name for the resource.
- map[string]string
- (Updatable) 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"}
- Log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details Args - The pipeline log configuration details.
- Opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- Step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail Args - Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Boolean
- display
Name String - (Updatable) A user-friendly display name for the resource.
- Map<String,String>
- (Updatable) 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"}
- log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- opc
Parent StringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- boolean
- display
Name string - (Updatable) A user-friendly display name for the resource.
- {[key: string]: string}
- (Updatable) 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"}
- log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail[] - Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id This property is required. str - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline_
id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project_
id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- configuration_
override_ details Changes to this property will trigger replacement.
Pipeline Run Configuration Override Details Args - The configuration details of a pipeline.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- display_
name str - (Updatable) A user-friendly display name for the resource.
- Mapping[str, str]
- (Updatable) 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"}
- log_
configuration_ override_ details Changes to this property will trigger replacement.
Pipeline Run Log Configuration Override Details Args - The pipeline log configuration details.
- opc_
parent_ strrpt_ url - URL to fetch the Resource Principal Token from the parent resource.
- step_
override_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Args] - Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- configuration
Override Details Changes to this property will trigger replacement.
- The configuration details of a pipeline.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Boolean
- display
Name String - (Updatable) A user-friendly display name for the resource.
- Map<String>
- (Updatable) 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"}
- log
Configuration Override Details Changes to this property will trigger replacement.
- The pipeline log configuration details.
- opc
Parent StringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- step
Override Details Changes to this property will trigger replacement.
- Array of step override details. Only Step Configuration is allowed to be overridden.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the PipelineRun resource produces the following output properties:
- Configuration
Details List<PipelineRun Configuration Detail> - The configuration details of a pipeline.
- Created
By string - The OCID of the user who created the pipeline run.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details of the state of the step run.
- Log
Details List<PipelineRun Log Detail> - Customer logging details for pipeline run.
- State string
- The state of the step run.
- Step
Runs List<PipelineRun Step Run> - Array of StepRun object for each step.
- Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- Configuration
Details []PipelineRun Configuration Detail - The configuration details of a pipeline.
- Created
By string - The OCID of the user who created the pipeline run.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details of the state of the step run.
- Log
Details []PipelineRun Log Detail - Customer logging details for pipeline run.
- State string
- The state of the step run.
- Step
Runs []PipelineRun Step Run - Array of StepRun object for each step.
- Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- configuration
Details List<PipelineRun Configuration Detail> - The configuration details of a pipeline.
- created
By String - The OCID of the user who created the pipeline run.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details of the state of the step run.
- log
Details List<PipelineRun Log Detail> - Customer logging details for pipeline run.
- state String
- The state of the step run.
- step
Runs List<PipelineRun Step Run> - Array of StepRun object for each step.
- time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- configuration
Details PipelineRun Configuration Detail[] - The configuration details of a pipeline.
- created
By string - The OCID of the user who created the pipeline run.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Details of the state of the step run.
- log
Details PipelineRun Log Detail[] - Customer logging details for pipeline run.
- state string
- The state of the step run.
- step
Runs PipelineRun Step Run[] - Array of StepRun object for each step.
- time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- configuration_
details Sequence[datascience.Pipeline Run Configuration Detail] - The configuration details of a pipeline.
- created_
by str - The OCID of the user who created the pipeline run.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - Details of the state of the step run.
- log_
details Sequence[datascience.Pipeline Run Log Detail] - Customer logging details for pipeline run.
- state str
- The state of the step run.
- step_
runs Sequence[datascience.Pipeline Run Step Run] - Array of StepRun object for each step.
- 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.
- configuration
Details List<Property Map> - The configuration details of a pipeline.
- created
By String - The OCID of the user who created the pipeline run.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details of the state of the step run.
- log
Details List<Property Map> - Customer logging details for pipeline run.
- state String
- The state of the step run.
- step
Runs List<Property Map> - Array of StepRun object for each step.
- time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
Look up Existing PipelineRun Resource
Get an existing PipelineRun resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PipelineRunState, opts?: CustomResourceOptions): PipelineRun
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
configuration_details: Optional[Sequence[_datascience.PipelineRunConfigurationDetailArgs]] = None,
configuration_override_details: Optional[_datascience.PipelineRunConfigurationOverrideDetailsArgs] = None,
created_by: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
delete_related_job_runs: Optional[bool] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
log_configuration_override_details: Optional[_datascience.PipelineRunLogConfigurationOverrideDetailsArgs] = None,
log_details: Optional[Sequence[_datascience.PipelineRunLogDetailArgs]] = None,
opc_parent_rpt_url: Optional[str] = None,
pipeline_id: Optional[str] = None,
project_id: Optional[str] = None,
state: Optional[str] = None,
step_override_details: Optional[Sequence[_datascience.PipelineRunStepOverrideDetailArgs]] = None,
step_runs: Optional[Sequence[_datascience.PipelineRunStepRunArgs]] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_accepted: Optional[str] = None,
time_finished: Optional[str] = None,
time_started: Optional[str] = None,
time_updated: Optional[str] = None) -> PipelineRun
func GetPipelineRun(ctx *Context, name string, id IDInput, state *PipelineRunState, opts ...ResourceOption) (*PipelineRun, error)
public static PipelineRun Get(string name, Input<string> id, PipelineRunState? state, CustomResourceOptions? opts = null)
public static PipelineRun get(String name, Output<String> id, PipelineRunState state, CustomResourceOptions options)
resources: _: type: oci:DataScience:PipelineRun get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Configuration
Details List<PipelineRun Configuration Detail> - The configuration details of a pipeline.
- Configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- Created
By string - The OCID of the user who created the pipeline run.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- Display
Name string - (Updatable) A user-friendly display name for the resource.
- Dictionary<string, string>
- (Updatable) 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"}
- Lifecycle
Details string - Details of the state of the step run.
- Log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- Log
Details List<PipelineRun Log Detail> - Customer logging details for pipeline run.
- Opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- Pipeline
Id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- Project
Id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- State string
- The state of the step run.
- Step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
- Step
Runs List<PipelineRun Step Run> - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Configuration
Details []PipelineRun Configuration Detail Args - The configuration details of a pipeline.
- Configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details Args - The configuration details of a pipeline.
- Created
By string - The OCID of the user who created the pipeline run.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- Display
Name string - (Updatable) A user-friendly display name for the resource.
- map[string]string
- (Updatable) 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"}
- Lifecycle
Details string - Details of the state of the step run.
- Log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details Args - The pipeline log configuration details.
- Log
Details []PipelineRun Log Detail Args - Customer logging details for pipeline run.
- Opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- Pipeline
Id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- Project
Id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- State string
- The state of the step run.
- Step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail Args - Array of step override details. Only Step Configuration is allowed to be overridden.
- Step
Runs []PipelineRun Step Run Args - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- Time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- configuration
Details List<PipelineRun Configuration Detail> - The configuration details of a pipeline.
- configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- created
By String - The OCID of the user who created the pipeline run.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Boolean
- display
Name String - (Updatable) A user-friendly display name for the resource.
- Map<String,String>
- (Updatable) 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"}
- lifecycle
Details String - Details of the state of the step run.
- log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- log
Details List<PipelineRun Log Detail> - Customer logging details for pipeline run.
- opc
Parent StringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- pipeline
Id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- state String
- The state of the step run.
- step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
- step
Runs List<PipelineRun Step Run> - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- configuration
Details PipelineRun Configuration Detail[] - The configuration details of a pipeline.
- configuration
Override Details Changes to this property will trigger replacement.
Run Configuration Override Details - The configuration details of a pipeline.
- created
By string - The OCID of the user who created the pipeline run.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- boolean
- display
Name string - (Updatable) A user-friendly display name for the resource.
- {[key: string]: string}
- (Updatable) 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"}
- lifecycle
Details string - Details of the state of the step run.
- log
Configuration Override Details Changes to this property will trigger replacement.
Run Log Configuration Override Details - The pipeline log configuration details.
- log
Details PipelineRun Log Detail[] - Customer logging details for pipeline run.
- opc
Parent stringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- pipeline
Id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- state string
- The state of the step run.
- step
Override Details Changes to this property will trigger replacement.
Run Step Override Detail[] - Array of step override details. Only Step Configuration is allowed to be overridden.
- step
Runs PipelineRun Step Run[] - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- time
Accepted string - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated string - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- compartment_
id str - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- configuration_
details Sequence[datascience.Pipeline Run Configuration Detail Args] - The configuration details of a pipeline.
- configuration_
override_ details Changes to this property will trigger replacement.
Pipeline Run Configuration Override Details Args - The configuration details of a pipeline.
- created_
by str - The OCID of the user who created the pipeline run.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- bool
- display_
name str - (Updatable) A user-friendly display name for the resource.
- Mapping[str, str]
- (Updatable) 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"}
- lifecycle_
details str - Details of the state of the step run.
- log_
configuration_ override_ details Changes to this property will trigger replacement.
Pipeline Run Log Configuration Override Details Args - The pipeline log configuration details.
- log_
details Sequence[datascience.Pipeline Run Log Detail Args] - Customer logging details for pipeline run.
- opc_
parent_ strrpt_ url - URL to fetch the Resource Principal Token from the parent resource.
- pipeline_
id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project_
id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- state str
- The state of the step run.
- step_
override_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Args] - Array of step override details. Only Step Configuration is allowed to be overridden.
- step_
runs Sequence[datascience.Pipeline Run Step Run Args] - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- time_
accepted str - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time_
finished str - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time_
started str - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time_
updated str - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- configuration
Details List<Property Map> - The configuration details of a pipeline.
- configuration
Override Details Changes to this property will trigger replacement.
- The configuration details of a pipeline.
- created
By String - The OCID of the user who created the pipeline run.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Boolean
- display
Name String - (Updatable) A user-friendly display name for the resource.
- Map<String>
- (Updatable) 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"}
- lifecycle
Details String - Details of the state of the step run.
- log
Configuration Override Details Changes to this property will trigger replacement.
- The pipeline log configuration details.
- log
Details List<Property Map> - Customer logging details for pipeline run.
- opc
Parent StringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- pipeline
Id Changes to this property will trigger replacement.
- The OCID of the pipeline for which pipeline run is created.
- project
Id Changes to this property will trigger replacement.
- The OCID of the project to associate the pipeline run with.
- state String
- The state of the step run.
- step
Override Details Changes to this property will trigger replacement.
- Array of step override details. Only Step Configuration is allowed to be overridden.
- step
Runs List<Property Map> - Array of StepRun object for each step.
Changes to this property will trigger replacement.
Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- time
Accepted String - The date and time the pipeline run was accepted in the timestamp format defined by RFC3339.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- time
Updated String - The date and time the pipeline run was updated in the timestamp format defined by RFC3339.
Supporting Types
PipelineRunConfigurationDetail, PipelineRunConfigurationDetailArgs
- Command
Line stringArguments - The command line arguments to set for step.
- Environment
Variables Dictionary<string, string> - Environment variables to set for step.
- Maximum
Runtime stringIn Minutes - A time bound for the execution of the step.
- Type string
- The type of pipeline.
- Command
Line stringArguments - The command line arguments to set for step.
- Environment
Variables map[string]string - Environment variables to set for step.
- Maximum
Runtime stringIn Minutes - A time bound for the execution of the step.
- Type string
- The type of pipeline.
- command
Line StringArguments - The command line arguments to set for step.
- environment
Variables Map<String,String> - Environment variables to set for step.
- maximum
Runtime StringIn Minutes - A time bound for the execution of the step.
- type String
- The type of pipeline.
- command
Line stringArguments - The command line arguments to set for step.
- environment
Variables {[key: string]: string} - Environment variables to set for step.
- maximum
Runtime stringIn Minutes - A time bound for the execution of the step.
- type string
- The type of pipeline.
- command_
line_ strarguments - The command line arguments to set for step.
- environment_
variables Mapping[str, str] - Environment variables to set for step.
- maximum_
runtime_ strin_ minutes - A time bound for the execution of the step.
- type str
- The type of pipeline.
- command
Line StringArguments - The command line arguments to set for step.
- environment
Variables Map<String> - Environment variables to set for step.
- maximum
Runtime StringIn Minutes - A time bound for the execution of the step.
- type String
- The type of pipeline.
PipelineRunConfigurationOverrideDetails, PipelineRunConfigurationOverrideDetailsArgs
- Type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- Command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- Environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- Maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- Type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- Command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- Environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- Maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- command_
line_ arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- environment_
variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- maximum_
runtime_ in_ minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type
This property is required. Changes to this property will trigger replacement.
- The type of pipeline.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for steps in the pipeline.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for steps in the pipeline.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
PipelineRunLogConfigurationOverrideDetails, PipelineRunLogConfigurationOverrideDetailsArgs
- Enable
Auto Log Creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- Enable
Logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- Log
Group Id Changes to this property will trigger replacement.
- The OCID of the log group.
- Log
Id Changes to this property will trigger replacement.
- The OCID of the log.
- Enable
Auto Log Creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- Enable
Logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- Log
Group Id Changes to this property will trigger replacement.
- The OCID of the log group.
- Log
Id Changes to this property will trigger replacement.
- The OCID of the log.
- enable
Auto Log Creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- log
Group Id Changes to this property will trigger replacement.
- The OCID of the log group.
- log
Id Changes to this property will trigger replacement.
- The OCID of the log.
- enable
Auto Log Creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- log
Group Id Changes to this property will trigger replacement.
- The OCID of the log group.
- log
Id Changes to this property will trigger replacement.
- The OCID of the log.
- enable_
auto_ log_ creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable_
logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- log_
group_ id Changes to this property will trigger replacement.
- The OCID of the log group.
- log_
id Changes to this property will trigger replacement.
- The OCID of the log.
- enable
Auto Log Creation Changes to this property will trigger replacement.
- If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging Changes to this property will trigger replacement.
- If customer logging is enabled for pipeline.
- log
Group Id Changes to this property will trigger replacement.
- The OCID of the log group.
- log
Id Changes to this property will trigger replacement.
- The OCID of the log.
PipelineRunLogDetail, PipelineRunLogDetailArgs
- Log
Group stringId - The log group id for where log objects will be for pipeline runs.
- Log
Id string - The log id of the log object the pipeline run logs will be shipped to.
- Log
Group stringId - The log group id for where log objects will be for pipeline runs.
- Log
Id string - The log id of the log object the pipeline run logs will be shipped to.
- log
Group StringId - The log group id for where log objects will be for pipeline runs.
- log
Id String - The log id of the log object the pipeline run logs will be shipped to.
- log
Group stringId - The log group id for where log objects will be for pipeline runs.
- log
Id string - The log id of the log object the pipeline run logs will be shipped to.
- log_
group_ strid - The log group id for where log objects will be for pipeline runs.
- log_
id str - The log id of the log object the pipeline run logs will be shipped to.
- log
Group StringId - The log group id for where log objects will be for pipeline runs.
- log
Id String - The log id of the log object the pipeline run logs will be shipped to.
PipelineRunStepOverrideDetail, PipelineRunStepOverrideDetailArgs
- Step
Configuration Details This property is required. Changes to this property will trigger replacement.
Run Step Override Detail Step Configuration Details - The configuration details of a step.
- Step
Name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- Step
Container Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- Step
Dataflow Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details - The configuration details of a Dataflow step.
- Step
Configuration Details This property is required. Changes to this property will trigger replacement.
Run Step Override Detail Step Configuration Details - The configuration details of a step.
- Step
Name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- Step
Container Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- Step
Dataflow Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details - The configuration details of a Dataflow step.
- step
Configuration Details This property is required. Changes to this property will trigger replacement.
Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step
Name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- step
Container Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step
Dataflow Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details - The configuration details of a Dataflow step.
- step
Configuration Details This property is required. Changes to this property will trigger replacement.
Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step
Name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- step
Container Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step
Dataflow Configuration Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details - The configuration details of a Dataflow step.
- step_
configuration_ details This property is required. Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step_
name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- step_
container_ configuration_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step_
dataflow_ configuration_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Step Dataflow Configuration Details - The configuration details of a Dataflow step.
- step
Configuration Details This property is required. Changes to this property will trigger replacement.
- The configuration details of a step.
- step
Name This property is required. Changes to this property will trigger replacement.
- The name of the step.
- step
Container Configuration Details Changes to this property will trigger replacement.
- Container Details for a step in pipeline.
- step
Dataflow Configuration Details Changes to this property will trigger replacement.
- The configuration details of a Dataflow step.
PipelineRunStepOverrideDetailStepConfigurationDetails, PipelineRunStepOverrideDetailStepConfigurationDetailsArgs
- Command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- Environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- Maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
- Command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- Environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- Maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
- command_
line_ arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- environment_
variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- maximum_
runtime_ in_ minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
- command
Line Arguments Changes to this property will trigger replacement.
- The command line arguments to set for step.
- environment
Variables Changes to this property will trigger replacement.
- Environment variables to set for step.
- maximum
Runtime In Minutes Changes to this property will trigger replacement.
- A time bound for the execution of the step.
PipelineRunStepOverrideDetailStepContainerConfigurationDetails, PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs
- Container
Type This property is required. Changes to this property will trigger replacement.
- The type of container.
- Image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- Cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - Entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - Image
Digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- Image
Signature Id Changes to this property will trigger replacement.
- OCID of the container image signature
- Container
Type This property is required. Changes to this property will trigger replacement.
- The type of container.
- Image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- Cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - Entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - Image
Digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- Image
Signature Id Changes to this property will trigger replacement.
- OCID of the container image signature
- container
Type This property is required. Changes to this property will trigger replacement.
- The type of container.
- image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - image
Digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature Id Changes to this property will trigger replacement.
- OCID of the container image signature
- container
Type This property is required. Changes to this property will trigger replacement.
- The type of container.
- image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - image
Digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature Id Changes to this property will trigger replacement.
- OCID of the container image signature
- container_
type This property is required. Changes to this property will trigger replacement.
- The type of container.
- image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - image_
digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image_
signature_ id Changes to this property will trigger replacement.
- OCID of the container image signature
- container
Type This property is required. Changes to this property will trigger replacement.
- The type of container.
- image
This property is required. Changes to this property will trigger replacement.
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds
Changes to this property will trigger replacement.
- The container image run CMD as a list of strings. Use
CMD
as arguments to theENTRYPOINT
or the only command to run in the absence of anENTRYPOINT
. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. - entrypoints
Changes to this property will trigger replacement.
- The container image run ENTRYPOINT as a list of strings. Accept the
CMD
as extra arguments. The combined size ofCMD
andENTRYPOINT
must be less than 2048 bytes. More information on howCMD
andENTRYPOINT
interact are here. - image
Digest Changes to this property will trigger replacement.
- The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature Id Changes to this property will trigger replacement.
- OCID of the container image signature
PipelineRunStepOverrideDetailStepDataflowConfigurationDetails, PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsArgs
- Configuration Dictionary<string, string>
- The Spark configuration passed to the running process.
- Driver
Shape Changes to this property will trigger replacement.
- The VM shape for the driver.
- Driver
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Driver Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- Executor
Shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- Executor
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Executor Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- Logs
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- Num
Executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- Warehouse
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- Configuration map[string]string
- The Spark configuration passed to the running process.
- Driver
Shape Changes to this property will trigger replacement.
- The VM shape for the driver.
- Driver
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Driver Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- Executor
Shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- Executor
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Executor Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- Logs
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- Num
Executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- Warehouse
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration Map<String,String>
- The Spark configuration passed to the running process.
- driver
Shape Changes to this property will trigger replacement.
- The VM shape for the driver.
- driver
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Driver Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executor
Shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- executor
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Executor Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- num
Executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- warehouse
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration {[key: string]: string}
- The Spark configuration passed to the running process.
- driver
Shape Changes to this property will trigger replacement.
- The VM shape for the driver.
- driver
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Driver Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executor
Shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- executor
Shape Config Details Changes to this property will trigger replacement.
Run Step Override Detail Step Dataflow Configuration Details Executor Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- num
Executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- warehouse
Bucket Uri Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- The VM shape for the driver.
- driver_
shape_ config_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Step Dataflow Configuration Details Driver Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executor_
shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- executor_
shape_ config_ details Changes to this property will trigger replacement.
Pipeline Run Step Override Detail Step Dataflow Configuration Details Executor Shape Config Details - Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs_
bucket_ uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- num_
executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- warehouse_
bucket_ uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
- configuration Map<String>
- The Spark configuration passed to the running process.
- driver
Shape Changes to this property will trigger replacement.
- The VM shape for the driver.
- driver
Shape Config Details Changes to this property will trigger replacement.
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- executor
Shape Changes to this property will trigger replacement.
- The VM shape for the executors.
- executor
Shape Config Details Changes to this property will trigger replacement.
- Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
- logs
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.
- num
Executors Changes to this property will trigger replacement.
- The number of executor VMs requested.
- warehouse
Bucket Uri Changes to this property will trigger replacement.
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetails, PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsDriverShapeConfigDetailsArgs
- Memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- Memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory_
in_ gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetails, PipelineRunStepOverrideDetailStepDataflowConfigurationDetailsExecutorShapeConfigDetailsArgs
- Memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- Memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory_
in_ gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
- memory
In Gbs Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
PipelineRunStepRun, PipelineRunStepRunArgs
- Dataflow
Run stringId - The OCID of the dataflow run triggered for this step run.
- Job
Run stringId - The OCID of the job run triggered for this step run.
- Lifecycle
Details string - Details of the state of the step run.
- State string
- The state of the step run.
- Step
Name string - The name of the step.
- Step
Type string - The type of step.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- Dataflow
Run stringId - The OCID of the dataflow run triggered for this step run.
- Job
Run stringId - The OCID of the job run triggered for this step run.
- Lifecycle
Details string - Details of the state of the step run.
- State string
- The state of the step run.
- Step
Name string - The name of the step.
- Step
Type string - The type of step.
- Time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- Time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- dataflow
Run StringId - The OCID of the dataflow run triggered for this step run.
- job
Run StringId - The OCID of the job run triggered for this step run.
- lifecycle
Details String - Details of the state of the step run.
- state String
- The state of the step run.
- step
Name String - The name of the step.
- step
Type String - The type of step.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- dataflow
Run stringId - The OCID of the dataflow run triggered for this step run.
- job
Run stringId - The OCID of the job run triggered for this step run.
- lifecycle
Details string - Details of the state of the step run.
- state string
- The state of the step run.
- step
Name string - The name of the step.
- step
Type string - The type of step.
- time
Finished string - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started string - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- dataflow_
run_ strid - The OCID of the dataflow run triggered for this step run.
- job_
run_ strid - The OCID of the job run triggered for this step run.
- lifecycle_
details str - Details of the state of the step run.
- state str
- The state of the step run.
- step_
name str - The name of the step.
- step_
type str - The type of step.
- time_
finished str - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time_
started str - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
- dataflow
Run StringId - The OCID of the dataflow run triggered for this step run.
- job
Run StringId - The OCID of the job run triggered for this step run.
- lifecycle
Details String - Details of the state of the step run.
- state String
- The state of the step run.
- step
Name String - The name of the step.
- step
Type String - The type of step.
- time
Finished String - The date and time the pipeline run request was finished in the timestamp format defined by RFC3339.
- time
Started String - The date and time the pipeline run request was started in the timestamp format defined by RFC3339.
Import
PipelineRuns can be imported using the id
, e.g.
$ pulumi import oci:DataScience/pipelineRun:PipelineRun test_pipeline_run "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.