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[_devops.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=oci.dev_ops.DeployPipelineDeployPipelineParametersArgs(
items=[oci.dev_ops.DeployPipelineDeployPipelineParametersItemArgs(
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
The DeployPipeline resource accepts the following input properties:
- Project
Id 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"}
- Deploy
Pipeline 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.
- Display
Name 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"}
- Project
Id 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"}
- 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 string
- (Updatable) Optional description about the deployment pipeline.
- Display
Name 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"}
- project
Id 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"}
- deploy
Pipeline 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.
- display
Name 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"}
- project
Id 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"}
- deploy
Pipeline 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.
- display
Name 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_ devops.parameters Deploy 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"}
- project
Id 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"}
- deploy
Pipeline 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.
- display
Name 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:
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- Deploy
Pipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- Deploy
Pipeline 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.
- Lifecycle
Details 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"}
- Time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- Time
Updated string - Time the deployment pipeline was updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- Deploy
Pipeline []DeployArtifacts Pipeline Deploy Pipeline Artifact - List of all artifacts used in the pipeline.
- Deploy
Pipeline []DeployEnvironments Pipeline Deploy Pipeline Environment - List of all environments used in the pipeline.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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"}
- Time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- Time
Updated string - Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- deploy
Pipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- deploy
Pipeline 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.
- lifecycle
Details 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"}
- time
Created String - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated String - Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment where the pipeline is created.
- deploy
Pipeline DeployArtifacts Pipeline Deploy Pipeline Artifact[] - List of all artifacts used in the pipeline.
- deploy
Pipeline DeployEnvironments Pipeline Deploy Pipeline Environment[] - List of all environments used in the pipeline.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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"}
- time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated 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[devops.artifacts Deploy Pipeline Deploy Pipeline Artifact] - List of all artifacts used in the pipeline.
- deploy_
pipeline_ Sequence[devops.environments Deploy 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.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- deploy
Pipeline List<Property Map>Artifacts - List of all artifacts used in the pipeline.
- deploy
Pipeline List<Property Map>Environments - List of all environments used in the pipeline.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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"}
- time
Created String - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated 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[_devops.DeployPipelineDeployPipelineArtifactArgs]] = None,
deploy_pipeline_environments: Optional[Sequence[_devops.DeployPipelineDeployPipelineEnvironmentArgs]] = None,
deploy_pipeline_parameters: Optional[_devops.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) -> DeployPipeline
func 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)
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 - 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"}
- Deploy
Pipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- Deploy
Pipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> - List of all environments used in the pipeline.
- Deploy
Pipeline 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.
- Display
Name 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"}
- Lifecycle
Details 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.
- Project
Id 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"}
- Time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- Time
Updated string - Time the deployment pipeline was updated. Format defined by RFC3339.
- Compartment
Id 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"}
- Deploy
Pipeline []DeployArtifacts Pipeline Deploy Pipeline Artifact Args - List of all artifacts used in the pipeline.
- Deploy
Pipeline []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 string
- (Updatable) Optional description about the deployment pipeline.
- Display
Name 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"}
- Lifecycle
Details 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.
- Project
Id 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"}
- Time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- Time
Updated string - Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment
Id 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"}
- deploy
Pipeline List<DeployArtifacts Pipeline Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- deploy
Pipeline List<DeployEnvironments Pipeline Deploy Pipeline Environment> - List of all environments used in the pipeline.
- deploy
Pipeline 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.
- display
Name 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"}
- lifecycle
Details 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.
- project
Id 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"}
- time
Created String - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated String - Time the deployment pipeline was updated. Format defined by RFC3339.
- compartment
Id 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"}
- deploy
Pipeline DeployArtifacts Pipeline Deploy Pipeline Artifact[] - List of all artifacts used in the pipeline.
- deploy
Pipeline DeployEnvironments Pipeline Deploy Pipeline Environment[] - List of all environments used in the pipeline.
- deploy
Pipeline 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.
- display
Name 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"}
- lifecycle
Details 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.
- project
Id 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"}
- time
Created string - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated 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[devops.artifacts Deploy Pipeline Deploy Pipeline Artifact Args] - List of all artifacts used in the pipeline.
- deploy_
pipeline_ Sequence[devops.environments Deploy Pipeline Deploy Pipeline Environment Args] - List of all environments used in the pipeline.
- deploy_
pipeline_ devops.parameters Deploy 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.
- compartment
Id 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"}
- deploy
Pipeline List<Property Map>Artifacts - List of all artifacts used in the pipeline.
- deploy
Pipeline List<Property Map>Environments - List of all environments used in the pipeline.
- deploy
Pipeline 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.
- display
Name 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"}
- lifecycle
Details 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.
- project
Id 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"}
- time
Created String - Time the deployment pipeline was created. Format defined by RFC3339.
- time
Updated String - Time the deployment pipeline was updated. Format defined by RFC3339.
Supporting Types
DeployPipelineDeployPipelineArtifact, DeployPipelineDeployPipelineArtifactArgs
- Items
List<Deploy
Pipeline Deploy Pipeline Artifact Item> - List of parameters defined for a deployment pipeline.
- Items
[]Deploy
Pipeline Deploy Pipeline Artifact Item - List of parameters defined for a deployment pipeline.
- items
List<Deploy
Pipeline Deploy Pipeline Artifact Item> - List of parameters defined for a deployment pipeline.
- items
Deploy
Pipeline Deploy Pipeline Artifact Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[devops.
Deploy Pipeline 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
- Deploy
Artifact stringId - The OCID of an artifact
- Deploy
Pipeline List<DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage> - List of stages.
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Deploy
Artifact stringId - The OCID of an artifact
- Deploy
Pipeline []DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage - List of stages.
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Artifact StringId - The OCID of an artifact
- deploy
Pipeline List<DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage> - List of stages.
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Artifact stringId - The OCID of an artifact
- deploy
Pipeline DeployStages Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage[] - List of stages.
- display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_
artifact_ strid - The OCID of an artifact
- deploy_
pipeline_ Sequence[devops.stages Deploy Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage] - List of stages.
- display_
name str - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Artifact StringId - The OCID of an artifact
- deploy
Pipeline List<Property Map>Stages - List of stages.
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineArtifactItemDeployPipelineStage, DeployPipelineDeployPipelineArtifactItemDeployPipelineStageArgs
- Items
List<Deploy
Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- Items
[]Deploy
Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item - List of parameters defined for a deployment pipeline.
- items
List<Deploy
Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- items
Deploy
Pipeline Deploy Pipeline Artifact Item Deploy Pipeline Stage Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[devops.
Deploy Pipeline 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
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Stage stringId - The OCID of a stage
- display
Name 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.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineEnvironment, DeployPipelineDeployPipelineEnvironmentArgs
- Items
List<Deploy
Pipeline Deploy Pipeline Environment Item> - List of parameters defined for a deployment pipeline.
- Items
[]Deploy
Pipeline Deploy Pipeline Environment Item - List of parameters defined for a deployment pipeline.
- items
List<Deploy
Pipeline Deploy Pipeline Environment Item> - List of parameters defined for a deployment pipeline.
- items
Deploy
Pipeline Deploy Pipeline Environment Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[devops.
Deploy Pipeline 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
- Deploy
Environment stringId - The OCID of an Environment
- Deploy
Pipeline List<DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage> - List of stages.
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Deploy
Environment stringId - The OCID of an Environment
- Deploy
Pipeline []DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage - List of stages.
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Environment StringId - The OCID of an Environment
- deploy
Pipeline List<DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage> - List of stages.
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Environment stringId - The OCID of an Environment
- deploy
Pipeline DeployStages Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage[] - List of stages.
- display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy_
environment_ strid - The OCID of an Environment
- deploy_
pipeline_ Sequence[devops.stages Deploy Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage] - List of stages.
- display_
name str - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Environment StringId - The OCID of an Environment
- deploy
Pipeline List<Property Map>Stages - List of stages.
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStage, DeployPipelineDeployPipelineEnvironmentItemDeployPipelineStageArgs
- Items
List<Deploy
Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- Items
[]Deploy
Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item - List of parameters defined for a deployment pipeline.
- items
List<Deploy
Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- items
Deploy
Pipeline Deploy Pipeline Environment Item Deploy Pipeline Stage Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[devops.
Deploy Pipeline 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
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
- deploy
Stage stringId - The OCID of a stage
- display
Name 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.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - (Updatable) Deployment pipeline display name. Avoid entering confidential information.
DeployPipelineDeployPipelineParameters, DeployPipelineDeployPipelineParametersArgs
- Items
List<Deploy
Pipeline Deploy Pipeline Parameters Item> - (Updatable) List of parameters defined for a deployment pipeline.
- Items
[]Deploy
Pipeline Deploy Pipeline Parameters Item - (Updatable) List of parameters defined for a deployment pipeline.
- items
List<Deploy
Pipeline Deploy Pipeline Parameters Item> - (Updatable) List of parameters defined for a deployment pipeline.
- items
Deploy
Pipeline Deploy Pipeline Parameters Item[] - (Updatable) List of parameters defined for a deployment pipeline.
- items
Sequence[devops.
Deploy Pipeline 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]*$.
- Default
Value 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]*$.
- Default
Value 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]*$.
- default
Value 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]*$.
- default
Value 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]*$.
- default
Value 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
oci
Terraform Provider.