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,
},
}],
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"],
},
}],
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),
},
},
},
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,
},
},
},
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 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())
.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}
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 string
- The unique name of the resource.
- args PipelineRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args PipelineRunArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PipelineRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
},
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"),
},
},
},
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())
.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=oci.data_science.PipelineRunConfigurationOverrideDetailsArgs(
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=oci.data_science.PipelineRunLogConfigurationOverrideDetailsArgs(
enable_auto_log_creation=False,
enable_logging=False,
log_group_id="string",
log_id="string",
),
opc_parent_rpt_url="string",
step_override_details=[oci.data_science.PipelineRunStepOverrideDetailArgs(
step_configuration_details=oci.data_science.PipelineRunStepOverrideDetailStepConfigurationDetailsArgs(
command_line_arguments="string",
environment_variables={
"string": "string",
},
maximum_runtime_in_minutes="string",
),
step_name="string",
step_container_configuration_details=oci.data_science.PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs(
container_type="string",
image="string",
cmds=["string"],
entrypoints=["string"],
image_digest="string",
image_signature_id="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",
},
}],
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
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
The PipelineRun resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
- Project
Id string - The OCID of the project to associate the pipeline run with.
- Configuration
Override PipelineDetails 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 PipelineOverride Details 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 List<PipelineDetails Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
- Dictionary<string, string>
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 string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- Pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
- Project
Id string - The OCID of the project to associate the pipeline run with.
- Configuration
Override PipelineDetails 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 PipelineOverride Details 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 []PipelineDetails Run Step Override Detail Args - Array of step override details. Only Step Configuration is allowed to be overridden.
- map[string]string
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 String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id String - The OCID of the pipeline for which pipeline run is created.
- project
Id String - The OCID of the project to associate the pipeline run with.
- configuration
Override PipelineDetails 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 PipelineOverride Details 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 List<PipelineDetails Run Step Override Detail> - Array of step override details. Only Step Configuration is allowed to be overridden.
- Map<String,String>
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 string - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id string - The OCID of the pipeline for which pipeline run is created.
- project
Id string - The OCID of the project to associate the pipeline run with.
- configuration
Override PipelineDetails 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 PipelineOverride Details 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 PipelineDetails Run Step Override Detail[] - Array of step override details. Only Step Configuration is allowed to be overridden.
- {[key: string]: string}
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 str - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline_
id str - The OCID of the pipeline for which pipeline run is created.
- project_
id str - The OCID of the project to associate the pipeline run with.
- configuration_
override_ datascience.details 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_ datascience.override_ details 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_ Sequence[datascience.details Pipeline Run Step Override Detail Args] - Array of step override details. Only Step Configuration is allowed to be overridden.
- Mapping[str, str]
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 String - (Updatable) The OCID of the compartment where you want to create the pipeline run.
- pipeline
Id String - The OCID of the pipeline for which pipeline run is created.
- project
Id String - The OCID of the project to associate the pipeline run with.
- configuration
Override Property MapDetails - 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 Property MapOverride Details - The pipeline log configuration details.
- opc
Parent StringRpt Url - URL to fetch the Resource Principal Token from the parent resource.
- step
Override List<Property Map>Details - Array of step override details. Only Step Configuration is allowed to be overridden.
- Map<String>
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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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 PipelineDetails 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 PipelineOverride Details 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 string - The OCID of the pipeline for which pipeline run is created.
- Project
Id string - The OCID of the project to associate the pipeline run with.
- State string
- The state of the step run.
- Step
Override List<PipelineDetails 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.
- Dictionary<string, string>
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 PipelineDetails 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 PipelineOverride Details 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 string - The OCID of the pipeline for which pipeline run is created.
- Project
Id string - The OCID of the project to associate the pipeline run with.
- State string
- The state of the step run.
- Step
Override []PipelineDetails 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.
- map[string]string
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 PipelineDetails 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 PipelineOverride Details 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 String - The OCID of the pipeline for which pipeline run is created.
- project
Id String - The OCID of the project to associate the pipeline run with.
- state String
- The state of the step run.
- step
Override List<PipelineDetails 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.
- Map<String,String>
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 PipelineDetails 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 PipelineOverride Details 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 string - The OCID of the pipeline for which pipeline run is created.
- project
Id string - The OCID of the project to associate the pipeline run with.
- state string
- The state of the step run.
- step
Override PipelineDetails 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.
- {[key: string]: string}
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_ datascience.details 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_ datascience.override_ details 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 str - The OCID of the pipeline for which pipeline run is created.
- project_
id str - The OCID of the project to associate the pipeline run with.
- state str
- The state of the step run.
- step_
override_ Sequence[datascience.details 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.
- Mapping[str, str]
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 Property MapDetails - 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 Property MapOverride Details - 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 String - The OCID of the pipeline for which pipeline run is created.
- project
Id String - The OCID of the project to associate the pipeline run with.
- state String
- The state of the step run.
- step
Override List<Property Map>Details - 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.
- Map<String>
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 string
- The type of pipeline.
- Command
Line stringArguments - The command line arguments to set for steps in the pipeline.
- Environment
Variables Dictionary<string, string> - Environment variables to set for steps in the pipeline.
- Maximum
Runtime stringIn Minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- Type string
- The type of pipeline.
- Command
Line stringArguments - The command line arguments to set for steps in the pipeline.
- Environment
Variables map[string]string - Environment variables to set for steps in the pipeline.
- Maximum
Runtime stringIn Minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type String
- The type of pipeline.
- command
Line StringArguments - The command line arguments to set for steps in the pipeline.
- environment
Variables Map<String,String> - Environment variables to set for steps in the pipeline.
- maximum
Runtime StringIn Minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type string
- The type of pipeline.
- command
Line stringArguments - The command line arguments to set for steps in the pipeline.
- environment
Variables {[key: string]: string} - Environment variables to set for steps in the pipeline.
- maximum
Runtime stringIn Minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type str
- The type of pipeline.
- command_
line_ strarguments - The command line arguments to set for steps in the pipeline.
- environment_
variables Mapping[str, str] - Environment variables to set for steps in the pipeline.
- maximum_
runtime_ strin_ minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
- type String
- The type of pipeline.
- command
Line StringArguments - The command line arguments to set for steps in the pipeline.
- environment
Variables Map<String> - Environment variables to set for steps in the pipeline.
- maximum
Runtime StringIn Minutes - A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
PipelineRunLogConfigurationOverrideDetails, PipelineRunLogConfigurationOverrideDetailsArgs
- Enable
Auto boolLog Creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- Enable
Logging bool - If customer logging is enabled for pipeline.
- Log
Group stringId - The OCID of the log group.
- Log
Id string - The OCID of the log.
- Enable
Auto boolLog Creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- Enable
Logging bool - If customer logging is enabled for pipeline.
- Log
Group stringId - The OCID of the log group.
- Log
Id string - The OCID of the log.
- enable
Auto BooleanLog Creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging Boolean - If customer logging is enabled for pipeline.
- log
Group StringId - The OCID of the log group.
- log
Id String - The OCID of the log.
- enable
Auto booleanLog Creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging boolean - If customer logging is enabled for pipeline.
- log
Group stringId - The OCID of the log group.
- log
Id string - The OCID of the log.
- enable_
auto_ boollog_ creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable_
logging bool - If customer logging is enabled for pipeline.
- log_
group_ strid - The OCID of the log group.
- log_
id str - The OCID of the log.
- enable
Auto BooleanLog Creation - If automatic on-behalf-of log object creation is enabled for pipeline runs.
- enable
Logging Boolean - If customer logging is enabled for pipeline.
- log
Group StringId - The OCID of the log group.
- log
Id String - 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 PipelineDetails Run Step Override Detail Step Configuration Details - The configuration details of a step.
- Step
Name string - The name of the step.
- Step
Container PipelineConfiguration Details Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- Step
Configuration PipelineDetails Run Step Override Detail Step Configuration Details - The configuration details of a step.
- Step
Name string - The name of the step.
- Step
Container PipelineConfiguration Details Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step
Configuration PipelineDetails Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step
Name String - The name of the step.
- step
Container PipelineConfiguration Details Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step
Configuration PipelineDetails Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step
Name string - The name of the step.
- step
Container PipelineConfiguration Details Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step_
configuration_ datascience.details Pipeline Run Step Override Detail Step Configuration Details - The configuration details of a step.
- step_
name str - The name of the step.
- step_
container_ datascience.configuration_ details Pipeline Run Step Override Detail Step Container Configuration Details - Container Details for a step in pipeline.
- step
Configuration Property MapDetails - The configuration details of a step.
- step
Name String - The name of the step.
- step
Container Property MapConfiguration Details - Container Details for a step in pipeline.
PipelineRunStepOverrideDetailStepConfigurationDetails, PipelineRunStepOverrideDetailStepConfigurationDetailsArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
PipelineRunStepOverrideDetailStepContainerConfigurationDetails, PipelineRunStepOverrideDetailStepContainerConfigurationDetailsArgs
- Container
Type string - The type of container.
- Image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- Cmds List<string>
- 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 List<string>
- 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 string - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- Image
Signature stringId - OCID of the container image signature
- Container
Type string - The type of container.
- Image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- Cmds []string
- 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 []string
- 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 string - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- Image
Signature stringId - OCID of the container image signature
- container
Type String - The type of container.
- image String
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds List<String>
- 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 List<String>
- 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 String - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature StringId - OCID of the container image signature
- container
Type string - The type of container.
- image string
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds string[]
- 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 string[]
- 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 string - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature stringId - OCID of the container image signature
- container_
type str - The type of container.
- image str
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds Sequence[str]
- 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 Sequence[str]
- 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 str - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image_
signature_ strid - OCID of the container image signature
- container
Type String - The type of container.
- image String
- The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format.
- cmds List<String>
- 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 List<String>
- 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 String - The digest of the container image. For example,
sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030
- image
Signature StringId - OCID of the container image signature
PipelineRunStepRun, PipelineRunStepRunArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.