Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.DevOps.getDeployPipelines
This data source provides the list of Deploy Pipelines in Oracle Cloud Infrastructure Devops service.
Returns a list of deployment pipelines.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDeployPipelines = oci.DevOps.getDeployPipelines({
compartmentId: compartmentId,
displayName: deployPipelineDisplayName,
id: deployPipelineId,
projectId: testProject.id,
state: deployPipelineState,
});
import pulumi
import pulumi_oci as oci
test_deploy_pipelines = oci.DevOps.get_deploy_pipelines(compartment_id=compartment_id,
display_name=deploy_pipeline_display_name,
id=deploy_pipeline_id,
project_id=test_project["id"],
state=deploy_pipeline_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/devops"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := devops.GetDeployPipelines(ctx, &devops.GetDeployPipelinesArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(deployPipelineDisplayName),
Id: pulumi.StringRef(deployPipelineId),
ProjectId: pulumi.StringRef(testProject.Id),
State: pulumi.StringRef(deployPipelineState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDeployPipelines = Oci.DevOps.GetDeployPipelines.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = deployPipelineDisplayName,
Id = deployPipelineId,
ProjectId = testProject.Id,
State = deployPipelineState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.DevOpsFunctions;
import com.pulumi.oci.DevOps.inputs.GetDeployPipelinesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testDeployPipelines = DevOpsFunctions.getDeployPipelines(GetDeployPipelinesArgs.builder()
.compartmentId(compartmentId)
.displayName(deployPipelineDisplayName)
.id(deployPipelineId)
.projectId(testProject.id())
.state(deployPipelineState)
.build());
}
}
variables:
testDeployPipelines:
fn::invoke:
function: oci:DevOps:getDeployPipelines
arguments:
compartmentId: ${compartmentId}
displayName: ${deployPipelineDisplayName}
id: ${deployPipelineId}
projectId: ${testProject.id}
state: ${deployPipelineState}
Using getDeployPipelines
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDeployPipelines(args: GetDeployPipelinesArgs, opts?: InvokeOptions): Promise<GetDeployPipelinesResult>
function getDeployPipelinesOutput(args: GetDeployPipelinesOutputArgs, opts?: InvokeOptions): Output<GetDeployPipelinesResult>def get_deploy_pipelines(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDeployPipelinesFilter]] = None,
id: Optional[str] = None,
project_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDeployPipelinesResult
def get_deploy_pipelines_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDeployPipelinesFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDeployPipelinesResult]func GetDeployPipelines(ctx *Context, args *GetDeployPipelinesArgs, opts ...InvokeOption) (*GetDeployPipelinesResult, error)
func GetDeployPipelinesOutput(ctx *Context, args *GetDeployPipelinesOutputArgs, opts ...InvokeOption) GetDeployPipelinesResultOutput> Note: This function is named GetDeployPipelines in the Go SDK.
public static class GetDeployPipelines
{
public static Task<GetDeployPipelinesResult> InvokeAsync(GetDeployPipelinesArgs args, InvokeOptions? opts = null)
public static Output<GetDeployPipelinesResult> Invoke(GetDeployPipelinesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDeployPipelinesResult> getDeployPipelines(GetDeployPipelinesArgs args, InvokeOptions options)
public static Output<GetDeployPipelinesResult> getDeployPipelines(GetDeployPipelinesArgs args, InvokeOptions options)
fn::invoke:
function: oci:DevOps/getDeployPipelines:getDeployPipelines
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Deploy Pipelines Filter> - Id string
- Unique identifier or OCID for listing a single resource by ID.
- Project
Id string - unique project identifier
- State string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Deploy Pipelines Filter - Id string
- Unique identifier or OCID for listing a single resource by ID.
- Project
Id string - unique project identifier
- State string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Deploy Pipelines Filter> - id String
- Unique identifier or OCID for listing a single resource by ID.
- project
Id String - unique project identifier
- state String
- A filter to return only DeployPipelines that matches the given lifecycleState.
- compartment
Id string - The OCID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Deploy Pipelines Filter[] - id string
- Unique identifier or OCID for listing a single resource by ID.
- project
Id string - unique project identifier
- state string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- compartment_
id str - The OCID of the compartment in which to list resources.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[Get
Deploy Pipelines Filter] - id str
- Unique identifier or OCID for listing a single resource by ID.
- project_
id str - unique project identifier
- state str
- A filter to return only DeployPipelines that matches the given lifecycleState.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- id String
- Unique identifier or OCID for listing a single resource by ID.
- project
Id String - unique project identifier
- state String
- A filter to return only DeployPipelines that matches the given lifecycleState.
getDeployPipelines Result
The following output properties are available:
- Deploy
Pipeline List<GetCollections Deploy Pipelines Deploy Pipeline Collection> - The list of deploy_pipeline_collection.
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- Display
Name string - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Filters
List<Get
Deploy Pipelines Filter> - Id string
- Unique identifier that is immutable on creation.
- Project
Id string - The OCID of a project.
- State string
- The current state of the deployment pipeline.
- Deploy
Pipeline []GetCollections Deploy Pipelines Deploy Pipeline Collection - The list of deploy_pipeline_collection.
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- Display
Name string - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Filters
[]Get
Deploy Pipelines Filter - Id string
- Unique identifier that is immutable on creation.
- Project
Id string - The OCID of a project.
- State string
- The current state of the deployment pipeline.
- deploy
Pipeline List<GetCollections Deploy Pipelines Deploy Pipeline Collection> - The list of deploy_pipeline_collection.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- display
Name String - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- filters
List<Get
Deploy Pipelines Filter> - id String
- Unique identifier that is immutable on creation.
- project
Id String - The OCID of a project.
- state String
- The current state of the deployment pipeline.
- deploy
Pipeline GetCollections Deploy Pipelines Deploy Pipeline Collection[] - The list of deploy_pipeline_collection.
- compartment
Id string - The OCID of the compartment where the pipeline is created.
- display
Name string - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- filters
Get
Deploy Pipelines Filter[] - id string
- Unique identifier that is immutable on creation.
- project
Id string - The OCID of a project.
- state string
- The current state of the deployment pipeline.
- deploy_
pipeline_ Sequence[Getcollections Deploy Pipelines Deploy Pipeline Collection] - The list of deploy_pipeline_collection.
- compartment_
id str - The OCID of the compartment where the pipeline is created.
- display_
name str - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- filters
Sequence[Get
Deploy Pipelines Filter] - id str
- Unique identifier that is immutable on creation.
- project_
id str - The OCID of a project.
- state str
- The current state of the deployment pipeline.
- deploy
Pipeline List<Property Map>Collections - The list of deploy_pipeline_collection.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- display
Name String - Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- filters List<Property Map>
- id String
- Unique identifier that is immutable on creation.
- project
Id String - The OCID of a project.
- state String
- The current state of the deployment pipeline.
Supporting Types
GetDeployPipelinesDeployPipelineCollection
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item] - List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
GetDeployPipelinesDeployPipelineCollectionItem
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, string>
- 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<GetArtifacts Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- Deploy
Pipeline List<GetEnvironments Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment> - List of all environments used in the pipeline.
- Deploy
Pipeline List<GetParameters Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter> - 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
- Optional description about the deployment pipeline.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- 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"} - Id string
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- State string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- 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 in which to list resources.
- map[string]string
- 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 []GetArtifacts Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact - List of all artifacts used in the pipeline.
- Deploy
Pipeline []GetEnvironments Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment - List of all environments used in the pipeline.
- Deploy
Pipeline []GetParameters Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter - 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
- Optional description about the deployment pipeline.
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- 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"} - Id string
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- State string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- 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 in which to list resources.
- Map<String,String>
- 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<GetArtifacts Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact> - List of all artifacts used in the pipeline.
- deploy
Pipeline List<GetEnvironments Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment> - List of all environments used in the pipeline.
- deploy
Pipeline List<GetParameters Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter> - 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
- Optional description about the deployment pipeline.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- 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"} - id String
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- state String
- A filter to return only DeployPipelines that matches the given lifecycleState.
- 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 in which to list resources.
- {[key: string]: string}
- 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 GetArtifacts Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact[] - List of all artifacts used in the pipeline.
- deploy
Pipeline GetEnvironments Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment[] - List of all environments used in the pipeline.
- deploy
Pipeline GetParameters Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter[] - 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
- Optional description about the deployment pipeline.
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- 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"} - id string
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- state string
- A filter to return only DeployPipelines that matches the given lifecycleState.
- {[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 in which to list resources.
- Mapping[str, str]
- 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[Getartifacts Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact] - List of all artifacts used in the pipeline.
- deploy_
pipeline_ Sequence[Getenvironments Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment] - List of all environments used in the pipeline.
- deploy_
pipeline_ Sequence[Getparameters Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter] - 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
- Optional description about the deployment pipeline.
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- 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"} - id str
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- state str
- A filter to return only DeployPipelines that matches the given lifecycleState.
- 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 in which to list resources.
- Map<String>
- 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 List<Property Map>Parameters - 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
- Optional description about the deployment pipeline.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- 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"} - id String
- Unique identifier or OCID for listing a single resource by ID.
- 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 - unique project identifier
- state String
- A filter to return only DeployPipelines that matches the given lifecycleState.
- 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.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item] - List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItem
- Deploy
Artifact stringId - The OCID of an artifact
- Deploy
Pipeline List<GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage> - List of stages.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Deploy
Artifact stringId - The OCID of an artifact
- Deploy
Pipeline []GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage - List of stages.
- Display
Name string - A filter to return only resources that match the entire display name given.
- deploy
Artifact StringId - The OCID of an artifact
- deploy
Pipeline List<GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage> - List of stages.
- display
Name String - A filter to return only resources that match the entire display name given.
- deploy
Artifact stringId - The OCID of an artifact
- deploy
Pipeline GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage[] - List of stages.
- display
Name string - A filter to return only resources that match the entire display name given.
- deploy_
artifact_ strid - The OCID of an artifact
- deploy_
pipeline_ Sequence[Getstages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage] - List of stages.
- display_
name str - A filter to return only resources that match the entire display name given.
- deploy
Artifact StringId - The OCID of an artifact
- deploy
Pipeline List<Property Map>Stages - List of stages.
- display
Name String - A filter to return only resources that match the entire display name given.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Artifact Item Deploy Pipeline Stage Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item 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.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStageItem
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - A filter to return only resources that match the entire display name given.
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - A filter to return only resources that match the entire display name given.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - A filter to return only resources that match the entire display name given.
- deploy
Stage stringId - The OCID of a stage
- display
Name string - A filter to return only resources that match the entire display name given.
- deploy_
stage_ strid - The OCID of a stage
- display_
name str - A filter to return only resources that match the entire display name given.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - A filter to return only resources that match the entire display name given.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item] - List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItem
- Deploy
Environment stringId - The OCID of an Environment
- Deploy
Pipeline List<GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage> - List of stages.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Deploy
Environment stringId - The OCID of an Environment
- Deploy
Pipeline []GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage - List of stages.
- Display
Name string - A filter to return only resources that match the entire display name given.
- deploy
Environment StringId - The OCID of an Environment
- deploy
Pipeline List<GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage> - List of stages.
- display
Name String - A filter to return only resources that match the entire display name given.
- deploy
Environment stringId - The OCID of an Environment
- deploy
Pipeline GetStages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage[] - List of stages.
- display
Name string - A filter to return only resources that match the entire display name given.
- deploy_
environment_ strid - The OCID of an Environment
- deploy_
pipeline_ Sequence[Getstages Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage] - List of stages.
- display_
name str - A filter to return only resources that match the entire display name given.
- deploy
Environment StringId - The OCID of an Environment
- deploy
Pipeline List<Property Map>Stages - List of stages.
- display
Name String - A filter to return only resources that match the entire display name given.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Environment Item Deploy Pipeline Stage Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item 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.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStageItem
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - A filter to return only resources that match the entire display name given.
- Deploy
Stage stringId - The OCID of a stage
- Display
Name string - A filter to return only resources that match the entire display name given.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - A filter to return only resources that match the entire display name given.
- deploy
Stage stringId - The OCID of a stage
- display
Name string - A filter to return only resources that match the entire display name given.
- deploy_
stage_ strid - The OCID of a stage
- display_
name str - A filter to return only resources that match the entire display name given.
- deploy
Stage StringId - The OCID of a stage
- display
Name String - A filter to return only resources that match the entire display name given.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter
- Items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter Item> - List of parameters defined for a deployment pipeline.
- Items
[]Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter Item - List of parameters defined for a deployment pipeline.
- items
List<Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter Item> - List of parameters defined for a deployment pipeline.
- items
Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter Item[] - List of parameters defined for a deployment pipeline.
- items
Sequence[Get
Deploy Pipelines Deploy Pipeline Collection Item Deploy Pipeline Parameter Item] - List of parameters defined for a deployment pipeline.
- items List<Property Map>
- List of parameters defined for a deployment pipeline.
GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameterItem
- Default
Value string - Default value of the parameter.
- Description string
- Optional description about the deployment pipeline.
- Name string
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- Default
Value string - Default value of the parameter.
- Description string
- Optional description about the deployment pipeline.
- Name string
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- default
Value String - Default value of the parameter.
- description String
- Optional description about the deployment pipeline.
- name String
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- default
Value string - Default value of the parameter.
- description string
- Optional description about the deployment pipeline.
- name string
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- default_
value str - Default value of the parameter.
- description str
- Optional description about the deployment pipeline.
- name str
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
- default
Value String - Default value of the parameter.
- description String
- Optional description about the deployment pipeline.
- name String
- Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
GetDeployPipelinesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
