oci.DevOps.DeployPipeline
Explore with Pulumi AI
This resource provides the Deploy Pipeline resource in Oracle Cloud Infrastructure Devops service.
Creates a new deployment pipeline.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDeployPipeline = new oci.devops.DeployPipeline("test_deploy_pipeline", {
    projectId: testProject.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    deployPipelineParameters: {
        items: [{
            name: deployPipelineDeployPipelineParametersItemsName,
            defaultValue: deployPipelineDeployPipelineParametersItemsDefaultValue,
            description: deployPipelineDeployPipelineParametersItemsDescription,
        }],
    },
    description: deployPipelineDescription,
    displayName: deployPipelineDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
});
import pulumi
import pulumi_oci as oci
test_deploy_pipeline = oci.dev_ops.DeployPipeline("test_deploy_pipeline",
    project_id=test_project["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    deploy_pipeline_parameters={
        "items": [{
            "name": deploy_pipeline_deploy_pipeline_parameters_items_name,
            "default_value": deploy_pipeline_deploy_pipeline_parameters_items_default_value,
            "description": deploy_pipeline_deploy_pipeline_parameters_items_description,
        }],
    },
    description=deploy_pipeline_description,
    display_name=deploy_pipeline_display_name,
    freeform_tags={
        "bar-key": "value",
    })
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/devops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devops.NewDeployPipeline(ctx, "test_deploy_pipeline", &devops.DeployPipelineArgs{
			ProjectId: pulumi.Any(testProject.Id),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			DeployPipelineParameters: &devops.DeployPipelineDeployPipelineParametersArgs{
				Items: devops.DeployPipelineDeployPipelineParametersItemArray{
					&devops.DeployPipelineDeployPipelineParametersItemArgs{
						Name:         pulumi.Any(deployPipelineDeployPipelineParametersItemsName),
						DefaultValue: pulumi.Any(deployPipelineDeployPipelineParametersItemsDefaultValue),
						Description:  pulumi.Any(deployPipelineDeployPipelineParametersItemsDescription),
					},
				},
			},
			Description: pulumi.Any(deployPipelineDescription),
			DisplayName: pulumi.Any(deployPipelineDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
		})
		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 testDeployPipeline = new Oci.DevOps.DeployPipeline("test_deploy_pipeline", new()
    {
        ProjectId = testProject.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        DeployPipelineParameters = new Oci.DevOps.Inputs.DeployPipelineDeployPipelineParametersArgs
        {
            Items = new[]
            {
                new Oci.DevOps.Inputs.DeployPipelineDeployPipelineParametersItemArgs
                {
                    Name = deployPipelineDeployPipelineParametersItemsName,
                    DefaultValue = deployPipelineDeployPipelineParametersItemsDefaultValue,
                    Description = deployPipelineDeployPipelineParametersItemsDescription,
                },
            },
        },
        Description = deployPipelineDescription,
        DisplayName = deployPipelineDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.DeployPipeline;
import com.pulumi.oci.DevOps.DeployPipelineArgs;
import com.pulumi.oci.DevOps.inputs.DeployPipelineDeployPipelineParametersArgs;
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 testDeployPipeline = new DeployPipeline("testDeployPipeline", DeployPipelineArgs.builder()
            .projectId(testProject.id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .deployPipelineParameters(DeployPipelineDeployPipelineParametersArgs.builder()
                .items(DeployPipelineDeployPipelineParametersItemArgs.builder()
                    .name(deployPipelineDeployPipelineParametersItemsName)
                    .defaultValue(deployPipelineDeployPipelineParametersItemsDefaultValue)
                    .description(deployPipelineDeployPipelineParametersItemsDescription)
                    .build())
                .build())
            .description(deployPipelineDescription)
            .displayName(deployPipelineDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .build());
    }
}
resources:
  testDeployPipeline:
    type: oci:DevOps:DeployPipeline
    name: test_deploy_pipeline
    properties:
      projectId: ${testProject.id}
      definedTags:
        foo-namespace.bar-key: value
      deployPipelineParameters:
        items:
          - name: ${deployPipelineDeployPipelineParametersItemsName}
            defaultValue: ${deployPipelineDeployPipelineParametersItemsDefaultValue}
            description: ${deployPipelineDeployPipelineParametersItemsDescription}
      description: ${deployPipelineDescription}
      displayName: ${deployPipelineDisplayName}
      freeformTags:
        bar-key: value
Create DeployPipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DeployPipeline(name: string, args: DeployPipelineArgs, opts?: CustomResourceOptions);@overload
def DeployPipeline(resource_name: str,
                   args: DeployPipelineArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def DeployPipeline(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   project_id: Optional[str] = None,
                   defined_tags: Optional[Mapping[str, str]] = None,
                   deploy_pipeline_parameters: Optional[DeployPipelineDeployPipelineParametersArgs] = None,
                   description: Optional[str] = None,
                   display_name: Optional[str] = None,
                   freeform_tags: Optional[Mapping[str, str]] = None)func NewDeployPipeline(ctx *Context, name string, args DeployPipelineArgs, opts ...ResourceOption) (*DeployPipeline, error)public DeployPipeline(string name, DeployPipelineArgs args, CustomResourceOptions? opts = null)
public DeployPipeline(String name, DeployPipelineArgs args)
public DeployPipeline(String name, DeployPipelineArgs args, CustomResourceOptions options)
type: oci:DevOps:DeployPipeline
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 DeployPipelineArgs
- 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 DeployPipelineArgs
- 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 DeployPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeployPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeployPipelineArgs
- 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 deployPipelineResource = new Oci.DevOps.DeployPipeline("deployPipelineResource", new()
{
    ProjectId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DeployPipelineParameters = new Oci.DevOps.Inputs.DeployPipelineDeployPipelineParametersArgs
    {
        Items = new[]
        {
            new Oci.DevOps.Inputs.DeployPipelineDeployPipelineParametersItemArgs
            {
                Name = "string",
                DefaultValue = "string",
                Description = "string",
            },
        },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
example, err := devops.NewDeployPipeline(ctx, "deployPipelineResource", &devops.DeployPipelineArgs{
	ProjectId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DeployPipelineParameters: &devops.DeployPipelineDeployPipelineParametersArgs{
		Items: devops.DeployPipelineDeployPipelineParametersItemArray{
			&devops.DeployPipelineDeployPipelineParametersItemArgs{
				Name:         pulumi.String("string"),
				DefaultValue: pulumi.String("string"),
				Description:  pulumi.String("string"),
			},
		},
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var deployPipelineResource = new DeployPipeline("deployPipelineResource", DeployPipelineArgs.builder()
    .projectId("string")
    .definedTags(Map.of("string", "string"))
    .deployPipelineParameters(DeployPipelineDeployPipelineParametersArgs.builder()
        .items(DeployPipelineDeployPipelineParametersItemArgs.builder()
            .name("string")
            .defaultValue("string")
            .description("string")
            .build())
        .build())
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .build());
deploy_pipeline_resource = oci.dev_ops.DeployPipeline("deployPipelineResource",
    project_id="string",
    defined_tags={
        "string": "string",
    },
    deploy_pipeline_parameters={
        "items": [{
            "name": "string",
            "default_value": "string",
            "description": "string",
        }],
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    })
const deployPipelineResource = new oci.devops.DeployPipeline("deployPipelineResource", {
    projectId: "string",
    definedTags: {
        string: "string",
    },
    deployPipelineParameters: {
        items: [{
            name: "string",
            defaultValue: "string",
            description: "string",
        }],
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
});
type: oci:DevOps:DeployPipeline
properties:
    definedTags:
        string: string
    deployPipelineParameters:
        items:
            - defaultValue: string
              description: string
              name: string
    description: string
    displayName: string
    freeformTags:
        string: string
    projectId: string
DeployPipeline 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 DeployPipeline resource accepts the following input properties:
- ProjectId string
- The OCID of a project. - ** 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 
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- DeployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- Description string
- (Updatable) Optional description about the deployment pipeline.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- ProjectId string
- The OCID of a project. - ** 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 
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- DeployPipeline DeployParameters Pipeline Deploy Pipeline Parameters Args 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- Description string
- (Updatable) Optional description about the deployment pipeline.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- projectId String
- The OCID of a project. - ** 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 
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description String
- (Updatable) Optional description about the deployment pipeline.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- projectId string
- The OCID of a project. - ** 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 
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description string
- (Updatable) Optional description about the deployment pipeline.
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- project_id str
- The OCID of a project. - ** 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 
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deploy_pipeline_ Deployparameters Pipeline Deploy Pipeline Parameters Args 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description str
- (Updatable) Optional description about the deployment pipeline.
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- projectId String
- The OCID of a project. - ** 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 
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline Property MapParameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description String
- (Updatable) Optional description about the deployment pipeline.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
Outputs
All input properties are implicitly available as output properties. Additionally, the DeployPipeline resource produces the following output properties:
- CompartmentId string
- The OCID of the compartment where the pipeline is created.
- DeployPipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> 
- List of all artifacts used in the pipeline.
- DeployPipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> 
- List of all environments used in the pipeline.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the deployment pipeline.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- CompartmentId string
- The OCID of the compartment where the pipeline is created.
- DeployPipeline []DeployArtifacts Pipeline Deploy Pipeline Artifact 
- List of all artifacts used in the pipeline.
- DeployPipeline []DeployEnvironments Pipeline Deploy Pipeline Environment 
- List of all environments used in the pipeline.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the deployment pipeline.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment where the pipeline is created.
- deployPipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> 
- List of all artifacts used in the pipeline.
- deployPipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> 
- List of all environments used in the pipeline.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the deployment pipeline.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated String
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId string
- The OCID of the compartment where the pipeline is created.
- deployPipeline DeployArtifacts Pipeline Deploy Pipeline Artifact[] 
- List of all artifacts used in the pipeline.
- deployPipeline DeployEnvironments Pipeline Deploy Pipeline Environment[] 
- List of all environments used in the pipeline.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- The current state of the deployment pipeline.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment_id str
- The OCID of the compartment where the pipeline is created.
- deploy_pipeline_ Sequence[Deployartifacts Pipeline Deploy Pipeline Artifact] 
- List of all artifacts used in the pipeline.
- deploy_pipeline_ Sequence[Deployenvironments Pipeline Deploy Pipeline Environment] 
- List of all environments used in the pipeline.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- The current state of the deployment pipeline.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- Time the deployment pipeline was created. Format defined by RFC3339.
- time_updated str
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment where the pipeline is created.
- deployPipeline List<Property Map>Artifacts 
- List of all artifacts used in the pipeline.
- deployPipeline List<Property Map>Environments 
- List of all environments used in the pipeline.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the deployment pipeline.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated String
- Time the deployment pipeline was updated. Format defined by RFC3339.
Look up Existing DeployPipeline Resource
Get an existing DeployPipeline 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?: DeployPipelineState, opts?: CustomResourceOptions): DeployPipeline@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        deploy_pipeline_artifacts: Optional[Sequence[DeployPipelineDeployPipelineArtifactArgs]] = None,
        deploy_pipeline_environments: Optional[Sequence[DeployPipelineDeployPipelineEnvironmentArgs]] = None,
        deploy_pipeline_parameters: Optional[DeployPipelineDeployPipelineParametersArgs] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        project_id: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> DeployPipelinefunc GetDeployPipeline(ctx *Context, name string, id IDInput, state *DeployPipelineState, opts ...ResourceOption) (*DeployPipeline, error)public static DeployPipeline Get(string name, Input<string> id, DeployPipelineState? state, CustomResourceOptions? opts = null)public static DeployPipeline get(String name, Output<String> id, DeployPipelineState state, CustomResourceOptions options)resources:  _:    type: oci:DevOps:DeployPipeline    get:      id: ${id}- 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.
- CompartmentId string
- The OCID of the compartment where the pipeline is created.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- DeployPipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> 
- List of all artifacts used in the pipeline.
- DeployPipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> 
- List of all environments used in the pipeline.
- DeployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- Description string
- (Updatable) Optional description about the deployment pipeline.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- ProjectId string
- The OCID of a project. - ** 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 
- State string
- The current state of the deployment pipeline.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- CompartmentId string
- The OCID of the compartment where the pipeline is created.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- DeployPipeline []DeployArtifacts Pipeline Deploy Pipeline Artifact Args 
- List of all artifacts used in the pipeline.
- DeployPipeline []DeployEnvironments Pipeline Deploy Pipeline Environment Args 
- List of all environments used in the pipeline.
- DeployPipeline DeployParameters Pipeline Deploy Pipeline Parameters Args 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- Description string
- (Updatable) Optional description about the deployment pipeline.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- ProjectId string
- The OCID of a project. - ** 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 
- State string
- The current state of the deployment pipeline.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- TimeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment where the pipeline is created.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> 
- List of all artifacts used in the pipeline.
- deployPipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> 
- List of all environments used in the pipeline.
- deployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description String
- (Updatable) Optional description about the deployment pipeline.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- projectId String
- The OCID of a project. - ** 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 
- state String
- The current state of the deployment pipeline.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated String
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId string
- The OCID of the compartment where the pipeline is created.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline DeployArtifacts Pipeline Deploy Pipeline Artifact[] 
- List of all artifacts used in the pipeline.
- deployPipeline DeployEnvironments Pipeline Deploy Pipeline Environment[] 
- List of all environments used in the pipeline.
- deployPipeline DeployParameters Pipeline Deploy Pipeline Parameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description string
- (Updatable) Optional description about the deployment pipeline.
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- projectId string
- The OCID of a project. - ** 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 
- state string
- The current state of the deployment pipeline.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated string
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment_id str
- The OCID of the compartment where the pipeline is created.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deploy_pipeline_ Sequence[Deployartifacts Pipeline Deploy Pipeline Artifact Args] 
- List of all artifacts used in the pipeline.
- deploy_pipeline_ Sequence[Deployenvironments Pipeline Deploy Pipeline Environment Args] 
- List of all environments used in the pipeline.
- deploy_pipeline_ Deployparameters Pipeline Deploy Pipeline Parameters Args 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description str
- (Updatable) Optional description about the deployment pipeline.
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- project_id str
- The OCID of a project. - ** 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 
- state str
- The current state of the deployment pipeline.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- Time the deployment pipeline was created. Format defined by RFC3339.
- time_updated str
- Time the deployment pipeline was updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment where the pipeline is created.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
- deployPipeline List<Property Map>Artifacts 
- List of all artifacts used in the pipeline.
- deployPipeline List<Property Map>Environments 
- List of all environments used in the pipeline.
- deployPipeline Property MapParameters 
- (Updatable) Specifies list of parameters present in the deployment pipeline. In case of Update operation, replaces existing parameters list. Merging with existing parameters is not supported.
- description String
- (Updatable) Optional description about the deployment pipeline.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- projectId String
- The OCID of a project. - ** 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 
- state String
- The current state of the deployment pipeline.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- Time the deployment pipeline was created. Format defined by RFC3339.
- timeUpdated String
- Time the deployment pipeline was updated. Format defined by RFC3339.
Supporting Types
DeployPipelineDeployPipelineArtifact, DeployPipelineDeployPipelineArtifactArgs          
- Items
List<DeployPipeline Deploy Pipeline Artifact Item> 
- List of parameters defined for a deployment pipeline.
- Items
[]DeployPipeline Deploy Pipeline Artifact Item 
- List of parameters defined for a deployment pipeline.
- items
List<DeployPipeline Deploy Pipeline Artifact Item> 
- List of parameters defined for a deployment pipeline.
- items
DeployPipeline Deploy Pipeline Artifact Item[] 
- List of parameters defined for a deployment pipeline.
- items
Sequence[DeployPipeline Deploy Pipeline Artifact Item] 
- List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
DeployPipelineDeployPipelineArtifactItem, DeployPipelineDeployPipelineArtifactItemArgs            
- DeployArtifact stringId 
- The OCID of an artifact
- DeployPipeline List<DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage> 
- List of stages.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- DeployArtifact stringId 
- The OCID of an artifact
- DeployPipeline []DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage 
- List of stages.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployArtifact StringId 
- The OCID of an artifact
- deployPipeline List<DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage> 
- List of stages.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployArtifact stringId 
- The OCID of an artifact
- deployPipeline DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage[] 
- List of stages.
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_artifact_ strid 
- The OCID of an artifact
- deploy_pipeline_ Sequence[Deploystages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage] 
- List of stages.
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployArtifact StringId 
- The OCID of an artifact
- deployPipeline List<Property Map>Stages 
- List of stages.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineArtifactItemDeployPipelineStage, DeployPipelineDeployPipelineArtifactItemDeployPipelineStageArgs                  
- Items
List<DeployPipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> 
- List of parameters defined for a deployment pipeline.
- Items
[]DeployPipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item 
- List of parameters defined for a deployment pipeline.
- items
List<DeployPipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> 
- List of parameters defined for a deployment pipeline.
- items
DeployPipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item[] 
- List of parameters defined for a deployment pipeline.
- items
Sequence[DeployPipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item] 
- List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
DeployPipelineDeployPipelineArtifactItemDeployPipelineStageItem, DeployPipelineDeployPipelineArtifactItemDeployPipelineStageItemArgs                    
- DeployStage stringId 
- The OCID of a stage
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- DeployStage stringId 
- The OCID of a stage
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage StringId 
- The OCID of a stage
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage stringId 
- The OCID of a stage
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_stage_ strid 
- The OCID of a stage
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage StringId 
- The OCID of a stage
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineEnvironment, DeployPipelineDeployPipelineEnvironmentArgs          
- Items
List<DeployPipeline Deploy Pipeline Environment Item> 
- List of parameters defined for a deployment pipeline.
- Items
[]DeployPipeline Deploy Pipeline Environment Item 
- List of parameters defined for a deployment pipeline.
- items
List<DeployPipeline Deploy Pipeline Environment Item> 
- List of parameters defined for a deployment pipeline.
- items
DeployPipeline Deploy Pipeline Environment Item[] 
- List of parameters defined for a deployment pipeline.
- items
Sequence[DeployPipeline Deploy Pipeline Environment Item] 
- List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
DeployPipelineDeployPipelineEnvironmentItem, DeployPipelineDeployPipelineEnvironmentItemArgs            
- DeployEnvironment stringId 
- The OCID of an Environment
- DeployPipeline List<DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage> 
- List of stages.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- DeployEnvironment stringId 
- The OCID of an Environment
- DeployPipeline []DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage 
- List of stages.
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployEnvironment StringId 
- The OCID of an Environment
- deployPipeline List<DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage> 
- List of stages.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployEnvironment stringId 
- The OCID of an Environment
- deployPipeline DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage[] 
- List of stages.
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_environment_ strid 
- The OCID of an Environment
- deploy_pipeline_ Sequence[Deploystages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage] 
- List of stages.
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployEnvironment StringId 
- The OCID of an Environment
- deployPipeline List<Property Map>Stages 
- List of stages.
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStage, DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStageArgs                  
- Items
List<DeployPipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item> 
- List of parameters defined for a deployment pipeline.
- Items
[]DeployPipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item 
- List of parameters defined for a deployment pipeline.
- items
List<DeployPipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item> 
- List of parameters defined for a deployment pipeline.
- items
DeployPipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item[] 
- List of parameters defined for a deployment pipeline.
- items
Sequence[DeployPipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item] 
- List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStageItem, DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStageItemArgs                    
- DeployStage stringId 
- The OCID of a stage
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- DeployStage stringId 
- The OCID of a stage
- DisplayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage StringId 
- The OCID of a stage
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage stringId 
- The OCID of a stage
- displayName string
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_stage_ strid 
- The OCID of a stage
- display_name str
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deployStage StringId 
- The OCID of a stage
- displayName String
- (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineParameters, DeployPipelineDeployPipelineParametersArgs          
- Items
List<DeployPipeline Deploy Pipeline Parameters Item> 
- (Updatable) List of parameters defined for a deployment pipeline.
- Items
[]DeployPipeline Deploy Pipeline Parameters Item 
- (Updatable) List of parameters defined for a deployment pipeline.
- items
List<DeployPipeline Deploy Pipeline Parameters Item> 
- (Updatable) List of parameters defined for a deployment pipeline.
- items
DeployPipeline Deploy Pipeline Parameters Item[] 
- (Updatable) List of parameters defined for a deployment pipeline.
- items
Sequence[DeployPipeline Deploy Pipeline Parameters Item] 
- (Updatable) List of parameters defined for a deployment pipeline.
- items List<Property Map>
- (Updatable) List of parameters defined for a deployment pipeline.
DeployPipelineDeployPipelineParametersItem, DeployPipelineDeployPipelineParametersItemArgs            
- Name string
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- DefaultValue string
- (Updatable) Default value of the parameter.
- Description string
- (Updatable) Description of the parameter.
- Name string
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- DefaultValue string
- (Updatable) Default value of the parameter.
- Description string
- (Updatable) Description of the parameter.
- name String
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- defaultValue String
- (Updatable) Default value of the parameter.
- description String
- (Updatable) Description of the parameter.
- name string
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- defaultValue string
- (Updatable) Default value of the parameter.
- description string
- (Updatable) Description of the parameter.
- name str
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- default_value str
- (Updatable) Default value of the parameter.
- description str
- (Updatable) Description of the parameter.
- name String
- (Updatable) Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- defaultValue String
- (Updatable) Default value of the parameter.
- description String
- (Updatable) Description of the parameter.
Import
DeployPipelines can be imported using the id, e.g.
$ pulumi import oci:DevOps/deployPipeline:DeployPipeline test_deploy_pipeline "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 ociTerraform Provider.