1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. getDeployPipelines
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DevOps.getDeployPipelines

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        displayName: _var.deploy_pipeline_display_name,
        id: _var.deploy_pipeline_id,
        projectId: oci_devops_project.test_project.id,
        state: _var.deploy_pipeline_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_deploy_pipelines = oci.DevOps.get_deploy_pipelines(compartment_id=var["compartment_id"],
        display_name=var["deploy_pipeline_display_name"],
        id=var["deploy_pipeline_id"],
        project_id=oci_devops_project["test_project"]["id"],
        state=var["deploy_pipeline_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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(_var.Compartment_id),
    			DisplayName:   pulumi.StringRef(_var.Deploy_pipeline_display_name),
    			Id:            pulumi.StringRef(_var.Deploy_pipeline_id),
    			ProjectId:     pulumi.StringRef(oci_devops_project.Test_project.Id),
    			State:         pulumi.StringRef(_var.Deploy_pipeline_state),
    		}, 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 = @var.Compartment_id,
            DisplayName = @var.Deploy_pipeline_display_name,
            Id = @var.Deploy_pipeline_id,
            ProjectId = oci_devops_project.Test_project.Id,
            State = @var.Deploy_pipeline_state,
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.deploy_pipeline_display_name())
                .id(var_.deploy_pipeline_id())
                .projectId(oci_devops_project.test_project().id())
                .state(var_.deploy_pipeline_state())
                .build());
    
        }
    }
    
    variables:
      testDeployPipelines:
        fn::invoke:
          Function: oci:DevOps:getDeployPipelines
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.deploy_pipeline_display_name}
            id: ${var.deploy_pipeline_id}
            projectId: ${oci_devops_project.test_project.id}
            state: ${var.deploy_pipeline_state}
    

    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[_devops.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[_devops.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DevOps/getDeployPipelines:getDeployPipelines
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetDeployPipelinesFilter>
    Id string
    Unique identifier or OCID for listing a single resource by ID.
    ProjectId string
    unique project identifier
    State string
    A filter to return only DeployPipelines that matches the given lifecycleState.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetDeployPipelinesFilter
    Id string
    Unique identifier or OCID for listing a single resource by ID.
    ProjectId string
    unique project identifier
    State string
    A filter to return only DeployPipelines that matches the given lifecycleState.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetDeployPipelinesFilter>
    id String
    Unique identifier or OCID for listing a single resource by ID.
    projectId String
    unique project identifier
    state String
    A filter to return only DeployPipelines that matches the given lifecycleState.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetDeployPipelinesFilter[]
    id string
    Unique identifier or OCID for listing a single resource by ID.
    projectId 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[devops.GetDeployPipelinesFilter]
    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.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName 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.
    projectId 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:

    DeployPipelineCollections List<GetDeployPipelinesDeployPipelineCollection>
    The list of deploy_pipeline_collection.
    CompartmentId string
    The OCID of the compartment where the pipeline is created.
    DisplayName string
    Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    Filters List<GetDeployPipelinesFilter>
    Id string
    Unique identifier that is immutable on creation.
    ProjectId string
    The OCID of a project.
    State string
    The current state of the deployment pipeline.
    DeployPipelineCollections []GetDeployPipelinesDeployPipelineCollection
    The list of deploy_pipeline_collection.
    CompartmentId string
    The OCID of the compartment where the pipeline is created.
    DisplayName string
    Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    Filters []GetDeployPipelinesFilter
    Id string
    Unique identifier that is immutable on creation.
    ProjectId string
    The OCID of a project.
    State string
    The current state of the deployment pipeline.
    deployPipelineCollections List<GetDeployPipelinesDeployPipelineCollection>
    The list of deploy_pipeline_collection.
    compartmentId String
    The OCID of the compartment where the pipeline is created.
    displayName String
    Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    filters List<GetDeployPipelinesFilter>
    id String
    Unique identifier that is immutable on creation.
    projectId String
    The OCID of a project.
    state String
    The current state of the deployment pipeline.
    deployPipelineCollections GetDeployPipelinesDeployPipelineCollection[]
    The list of deploy_pipeline_collection.
    compartmentId string
    The OCID of the compartment where the pipeline is created.
    displayName string
    Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
    filters GetDeployPipelinesFilter[]
    id string
    Unique identifier that is immutable on creation.
    projectId string
    The OCID of a project.
    state string
    The current state of the deployment pipeline.
    deploy_pipeline_collections Sequence[devops.GetDeployPipelinesDeployPipelineCollection]
    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[devops.GetDeployPipelinesFilter]
    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.
    deployPipelineCollections List<Property Map>
    The list of deploy_pipeline_collection.
    compartmentId String
    The OCID of the compartment where the pipeline is created.
    displayName 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.
    projectId String
    The OCID of a project.
    state String
    The current state of the deployment pipeline.

    Supporting Types

    GetDeployPipelinesDeployPipelineCollection

    Items List<GetDeployPipelinesDeployPipelineCollectionItem>
    List of parameters defined for a deployment pipeline.
    Items []GetDeployPipelinesDeployPipelineCollectionItem
    List of parameters defined for a deployment pipeline.
    items List<GetDeployPipelinesDeployPipelineCollectionItem>
    List of parameters defined for a deployment pipeline.
    items GetDeployPipelinesDeployPipelineCollectionItem[]
    List of parameters defined for a deployment pipeline.
    items Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItem]
    List of parameters defined for a deployment pipeline.
    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    DeployPipelineArtifacts List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact>
    List of all artifacts used in the pipeline.
    DeployPipelineEnvironments List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment>
    List of all environments used in the pipeline.
    DeployPipelineParameters List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter>
    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.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, object>
    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.
    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
    unique project identifier
    State string
    A filter to return only DeployPipelines that matches the given lifecycleState.
    SystemTags Dictionary<string, object>
    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 in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    DeployPipelineArtifacts []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact
    List of all artifacts used in the pipeline.
    DeployPipelineEnvironments []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment
    List of all environments used in the pipeline.
    DeployPipelineParameters []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter
    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.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]interface{}
    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.
    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
    unique project identifier
    State string
    A filter to return only DeployPipelines that matches the given lifecycleState.
    SystemTags map[string]interface{}
    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 in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    deployPipelineArtifacts List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact>
    List of all artifacts used in the pipeline.
    deployPipelineEnvironments List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment>
    List of all environments used in the pipeline.
    deployPipelineParameters List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter>
    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.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,Object>
    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.
    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
    unique project identifier
    state String
    A filter to return only DeployPipelines that matches the given lifecycleState.
    systemTags Map<String,Object>
    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 in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    deployPipelineArtifacts GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact[]
    List of all artifacts used in the pipeline.
    deployPipelineEnvironments GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment[]
    List of all environments used in the pipeline.
    deployPipelineParameters GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter[]
    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.
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: any}
    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.
    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
    unique project identifier
    state string
    A filter to return only DeployPipelines that matches the given lifecycleState.
    systemTags {[key: string]: any}
    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 in which to list resources.
    defined_tags Mapping[str, Any]
    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_artifacts Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact]
    List of all artifacts used in the pipeline.
    deploy_pipeline_environments Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment]
    List of all environments used in the pipeline.
    deploy_pipeline_parameters Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter]
    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.
    freeform_tags Mapping[str, Any]
    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.
    system_tags Mapping[str, Any]
    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 in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    deployPipelineArtifacts List<Property Map>
    List of all artifacts used in the pipeline.
    deployPipelineEnvironments List<Property Map>
    List of all environments used in the pipeline.
    deployPipelineParameters List<Property Map>
    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.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<Any>
    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.
    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
    unique project identifier
    state String
    A filter to return only DeployPipelines that matches the given lifecycleState.
    systemTags Map<Any>
    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.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifact

    Items []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItem
    List of parameters defined for a deployment pipeline.
    items GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItem[]
    List of parameters defined for a deployment pipeline.
    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItem

    DeployArtifactId string
    The OCID of an artifact
    DeployPipelineStages List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage>
    List of stages.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DeployArtifactId string
    The OCID of an artifact
    DeployPipelineStages []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage
    List of stages.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    deployArtifactId String
    The OCID of an artifact
    deployPipelineStages List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage>
    List of stages.
    displayName String
    A filter to return only resources that match the entire display name given.
    deployArtifactId string
    The OCID of an artifact
    deployPipelineStages GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage[]
    List of stages.
    displayName string
    A filter to return only resources that match the entire display name given.
    deploy_artifact_id str
    The OCID of an artifact
    deploy_pipeline_stages Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage]
    List of stages.
    display_name str
    A filter to return only resources that match the entire display name given.
    deployArtifactId String
    The OCID of an artifact
    deployPipelineStages List<Property Map>
    List of stages.
    displayName String
    A filter to return only resources that match the entire display name given.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStage

    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineArtifactItemDeployPipelineStageItem

    DeployStageId string
    The OCID of a stage
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DeployStageId string
    The OCID of a stage
    DisplayName string
    A filter to return only resources that match the entire display name given.
    deployStageId String
    The OCID of a stage
    displayName String
    A filter to return only resources that match the entire display name given.
    deployStageId string
    The OCID of a stage
    displayName string
    A filter to return only resources that match the entire display name given.
    deploy_stage_id str
    The OCID of a stage
    display_name str
    A filter to return only resources that match the entire display name given.
    deployStageId String
    The OCID of a stage
    displayName String
    A filter to return only resources that match the entire display name given.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironment

    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItem

    DeployEnvironmentId string
    The OCID of an Environment
    DeployPipelineStages List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage>
    List of stages.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DeployEnvironmentId string
    The OCID of an Environment
    DeployPipelineStages []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage
    List of stages.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    deployEnvironmentId String
    The OCID of an Environment
    deployPipelineStages List<GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage>
    List of stages.
    displayName String
    A filter to return only resources that match the entire display name given.
    deployEnvironmentId string
    The OCID of an Environment
    deployPipelineStages GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage[]
    List of stages.
    displayName string
    A filter to return only resources that match the entire display name given.
    deploy_environment_id str
    The OCID of an Environment
    deploy_pipeline_stages Sequence[devops.GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage]
    List of stages.
    display_name str
    A filter to return only resources that match the entire display name given.
    deployEnvironmentId String
    The OCID of an Environment
    deployPipelineStages List<Property Map>
    List of stages.
    displayName String
    A filter to return only resources that match the entire display name given.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStage

    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineEnvironmentItemDeployPipelineStageItem

    DeployStageId string
    The OCID of a stage
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DeployStageId string
    The OCID of a stage
    DisplayName string
    A filter to return only resources that match the entire display name given.
    deployStageId String
    The OCID of a stage
    displayName String
    A filter to return only resources that match the entire display name given.
    deployStageId string
    The OCID of a stage
    displayName string
    A filter to return only resources that match the entire display name given.
    deploy_stage_id str
    The OCID of a stage
    display_name str
    A filter to return only resources that match the entire display name given.
    deployStageId String
    The OCID of a stage
    displayName String
    A filter to return only resources that match the entire display name given.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameter

    Items []GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameterItem
    List of parameters defined for a deployment pipeline.
    items GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameterItem[]
    List of parameters defined for a deployment pipeline.
    items List<Property Map>
    List of parameters defined for a deployment pipeline.

    GetDeployPipelinesDeployPipelineCollectionItemDeployPipelineParameterItem

    DefaultValue 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]*$.
    DefaultValue 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]*$.
    defaultValue 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]*$.
    defaultValue 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]*$.
    defaultValue 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

    Name string
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    Values List<string>
    Regex bool
    Name string
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    Values []string
    Regex bool
    name String
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    values List<String>
    regex Boolean
    name string
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    values string[]
    regex boolean
    name str
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    values Sequence[str]
    regex bool
    name String
    Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$.
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi