1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. getDeployment
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DevOps.getDeployment

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides details about a specific Deployment resource in Oracle Cloud Infrastructure Devops service.

Retrieves a deployment by identifier.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDeployment = oci.DevOps.getDeployment({
    deploymentId: testDeploymentOciDevopsDeployment.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_deployment = oci.DevOps.get_deployment(deployment_id=test_deployment_oci_devops_deployment["id"])
Copy
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.GetDeployment(ctx, &devops.GetDeploymentArgs{
			DeploymentId: testDeploymentOciDevopsDeployment.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDeployment = Oci.DevOps.GetDeployment.Invoke(new()
    {
        DeploymentId = testDeploymentOciDevopsDeployment.Id,
    });

});
Copy
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.GetDeploymentArgs;
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 testDeployment = DevOpsFunctions.getDeployment(GetDeploymentArgs.builder()
            .deploymentId(testDeploymentOciDevopsDeployment.id())
            .build());

    }
}
Copy
variables:
  testDeployment:
    fn::invoke:
      function: oci:DevOps:getDeployment
      arguments:
        deploymentId: ${testDeploymentOciDevopsDeployment.id}
Copy

Using getDeployment

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 getDeployment(args: GetDeploymentArgs, opts?: InvokeOptions): Promise<GetDeploymentResult>
function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: InvokeOptions): Output<GetDeploymentResult>
Copy
def get_deployment(deployment_id: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetDeploymentResult
def get_deployment_output(deployment_id: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentResult]
Copy
func GetDeployment(ctx *Context, args *GetDeploymentArgs, opts ...InvokeOption) (*GetDeploymentResult, error)
func GetDeploymentOutput(ctx *Context, args *GetDeploymentOutputArgs, opts ...InvokeOption) GetDeploymentResultOutput
Copy

> Note: This function is named GetDeployment in the Go SDK.

public static class GetDeployment 
{
    public static Task<GetDeploymentResult> InvokeAsync(GetDeploymentArgs args, InvokeOptions? opts = null)
    public static Output<GetDeploymentResult> Invoke(GetDeploymentInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDeploymentResult> getDeployment(GetDeploymentArgs args, InvokeOptions options)
public static Output<GetDeploymentResult> getDeployment(GetDeploymentArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DevOps/getDeployment:getDeployment
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DeploymentId This property is required. string
Unique deployment identifier.
DeploymentId This property is required. string
Unique deployment identifier.
deploymentId This property is required. String
Unique deployment identifier.
deploymentId This property is required. string
Unique deployment identifier.
deployment_id This property is required. str
Unique deployment identifier.
deploymentId This property is required. String
Unique deployment identifier.

getDeployment Result

The following output properties are available:

CompartmentId string
The OCID of a compartment.
DefinedTags 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"}
DeployArtifactOverrideArguments List<GetDeploymentDeployArtifactOverrideArgument>
Specifies the list of artifact override arguments at the time of deployment.
DeployPipelineArtifacts List<GetDeploymentDeployPipelineArtifact>
List of all artifacts used in the pipeline.
DeployPipelineEnvironments List<GetDeploymentDeployPipelineEnvironment>
List of all environments used in the pipeline.
DeployPipelineId string
The OCID of a pipeline.
DeployStageId string
The OCID of the stage.
DeployStageOverrideArguments List<GetDeploymentDeployStageOverrideArgument>
Specifies the list of arguments to be overriden per Stage at the time of deployment.
DeploymentArguments List<GetDeploymentDeploymentArgument>
Specifies list of arguments passed along with the deployment.
DeploymentExecutionProgresses List<GetDeploymentDeploymentExecutionProgress>
The execution progress details of a deployment.
DeploymentId string
DeploymentType string
Specifies type of Deployment
DisplayName string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
FreeformTags 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 that is immutable on creation.
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.
PreviousDeploymentId string
Specifies the OCID of the previous deployment to be redeployed.
ProjectId string
The OCID of a project.
State string
The current state of the deployment.
SystemTags Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
Time the deployment was created. Format defined by RFC3339.
TimeUpdated string
Time the deployment was updated. Format defined by RFC3339.
TriggerNewDevopsDeployment bool
CompartmentId string
The OCID of a compartment.
DefinedTags 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"}
DeployArtifactOverrideArguments []GetDeploymentDeployArtifactOverrideArgument
Specifies the list of artifact override arguments at the time of deployment.
DeployPipelineArtifacts []GetDeploymentDeployPipelineArtifact
List of all artifacts used in the pipeline.
DeployPipelineEnvironments []GetDeploymentDeployPipelineEnvironment
List of all environments used in the pipeline.
DeployPipelineId string
The OCID of a pipeline.
DeployStageId string
The OCID of the stage.
DeployStageOverrideArguments []GetDeploymentDeployStageOverrideArgument
Specifies the list of arguments to be overriden per Stage at the time of deployment.
DeploymentArguments []GetDeploymentDeploymentArgument
Specifies list of arguments passed along with the deployment.
DeploymentExecutionProgresses []GetDeploymentDeploymentExecutionProgress
The execution progress details of a deployment.
DeploymentId string
DeploymentType string
Specifies type of Deployment
DisplayName string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
FreeformTags 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 that is immutable on creation.
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.
PreviousDeploymentId string
Specifies the OCID of the previous deployment to be redeployed.
ProjectId string
The OCID of a project.
State string
The current state of the deployment.
SystemTags map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
Time the deployment was created. Format defined by RFC3339.
TimeUpdated string
Time the deployment was updated. Format defined by RFC3339.
TriggerNewDevopsDeployment bool
compartmentId String
The OCID of a compartment.
definedTags 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"}
deployArtifactOverrideArguments List<GetDeploymentDeployArtifactOverrideArgument>
Specifies the list of artifact override arguments at the time of deployment.
deployPipelineArtifacts List<GetDeploymentDeployPipelineArtifact>
List of all artifacts used in the pipeline.
deployPipelineEnvironments List<GetDeploymentDeployPipelineEnvironment>
List of all environments used in the pipeline.
deployPipelineId String
The OCID of a pipeline.
deployStageId String
The OCID of the stage.
deployStageOverrideArguments List<GetDeploymentDeployStageOverrideArgument>
Specifies the list of arguments to be overriden per Stage at the time of deployment.
deploymentArguments List<GetDeploymentDeploymentArgument>
Specifies list of arguments passed along with the deployment.
deploymentExecutionProgresses List<GetDeploymentDeploymentExecutionProgress>
The execution progress details of a deployment.
deploymentId String
deploymentType String
Specifies type of Deployment
displayName String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
freeformTags 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 that is immutable on creation.
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.
previousDeploymentId String
Specifies the OCID of the previous deployment to be redeployed.
projectId String
The OCID of a project.
state String
The current state of the deployment.
systemTags Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
Time the deployment was created. Format defined by RFC3339.
timeUpdated String
Time the deployment was updated. Format defined by RFC3339.
triggerNewDevopsDeployment Boolean
compartmentId string
The OCID of a compartment.
definedTags {[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"}
deployArtifactOverrideArguments GetDeploymentDeployArtifactOverrideArgument[]
Specifies the list of artifact override arguments at the time of deployment.
deployPipelineArtifacts GetDeploymentDeployPipelineArtifact[]
List of all artifacts used in the pipeline.
deployPipelineEnvironments GetDeploymentDeployPipelineEnvironment[]
List of all environments used in the pipeline.
deployPipelineId string
The OCID of a pipeline.
deployStageId string
The OCID of the stage.
deployStageOverrideArguments GetDeploymentDeployStageOverrideArgument[]
Specifies the list of arguments to be overriden per Stage at the time of deployment.
deploymentArguments GetDeploymentDeploymentArgument[]
Specifies list of arguments passed along with the deployment.
deploymentExecutionProgresses GetDeploymentDeploymentExecutionProgress[]
The execution progress details of a deployment.
deploymentId string
deploymentType string
Specifies type of Deployment
displayName string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
freeformTags {[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 that is immutable on creation.
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.
previousDeploymentId string
Specifies the OCID of the previous deployment to be redeployed.
projectId string
The OCID of a project.
state string
The current state of the deployment.
systemTags {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
Time the deployment was created. Format defined by RFC3339.
timeUpdated string
Time the deployment was updated. Format defined by RFC3339.
triggerNewDevopsDeployment boolean
compartment_id str
The OCID of a compartment.
defined_tags 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_artifact_override_arguments Sequence[devops.GetDeploymentDeployArtifactOverrideArgument]
Specifies the list of artifact override arguments at the time of deployment.
deploy_pipeline_artifacts Sequence[devops.GetDeploymentDeployPipelineArtifact]
List of all artifacts used in the pipeline.
deploy_pipeline_environments Sequence[devops.GetDeploymentDeployPipelineEnvironment]
List of all environments used in the pipeline.
deploy_pipeline_id str
The OCID of a pipeline.
deploy_stage_id str
The OCID of the stage.
deploy_stage_override_arguments Sequence[devops.GetDeploymentDeployStageOverrideArgument]
Specifies the list of arguments to be overriden per Stage at the time of deployment.
deployment_arguments Sequence[devops.GetDeploymentDeploymentArgument]
Specifies list of arguments passed along with the deployment.
deployment_execution_progresses Sequence[devops.GetDeploymentDeploymentExecutionProgress]
The execution progress details of a deployment.
deployment_id str
deployment_type str
Specifies type of Deployment
display_name str
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
freeform_tags 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 that is immutable on creation.
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.
previous_deployment_id str
Specifies the OCID of the previous deployment to be redeployed.
project_id str
The OCID of a project.
state str
The current state of the deployment.
system_tags 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 was created. Format defined by RFC3339.
time_updated str
Time the deployment was updated. Format defined by RFC3339.
trigger_new_devops_deployment bool
compartmentId String
The OCID of a compartment.
definedTags 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"}
deployArtifactOverrideArguments List<Property Map>
Specifies the list of artifact override arguments at the time of deployment.
deployPipelineArtifacts List<Property Map>
List of all artifacts used in the pipeline.
deployPipelineEnvironments List<Property Map>
List of all environments used in the pipeline.
deployPipelineId String
The OCID of a pipeline.
deployStageId String
The OCID of the stage.
deployStageOverrideArguments List<Property Map>
Specifies the list of arguments to be overriden per Stage at the time of deployment.
deploymentArguments List<Property Map>
Specifies list of arguments passed along with the deployment.
deploymentExecutionProgresses List<Property Map>
The execution progress details of a deployment.
deploymentId String
deploymentType String
Specifies type of Deployment
displayName String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
freeformTags 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 that is immutable on creation.
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.
previousDeploymentId String
Specifies the OCID of the previous deployment to be redeployed.
projectId String
The OCID of a project.
state String
The current state of the deployment.
systemTags Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
Time the deployment was created. Format defined by RFC3339.
timeUpdated String
Time the deployment was updated. Format defined by RFC3339.
triggerNewDevopsDeployment Boolean

Supporting Types

GetDeploymentDeployArtifactOverrideArgument

Items This property is required. List<GetDeploymentDeployArtifactOverrideArgumentItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployArtifactOverrideArgumentItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployArtifactOverrideArgumentItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployArtifactOverrideArgumentItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployArtifactOverrideArgumentItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployArtifactOverrideArgumentItem

DeployArtifactId This property is required. string
The OCID of an artifact
Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
DeployArtifactId This property is required. string
The OCID of an artifact
Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
deployArtifactId This property is required. String
The OCID of an artifact
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.
deployArtifactId This property is required. string
The OCID of an artifact
name This property is required. string
Name of the step.
value This property is required. string
value of the argument.
deploy_artifact_id This property is required. str
The OCID of an artifact
name This property is required. str
Name of the step.
value This property is required. str
value of the argument.
deployArtifactId This property is required. String
The OCID of an artifact
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.

GetDeploymentDeployPipelineArtifact

Items This property is required. List<GetDeploymentDeployPipelineArtifactItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployPipelineArtifactItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployPipelineArtifactItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployPipelineArtifactItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployPipelineArtifactItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployPipelineArtifactItem

DeployArtifactId This property is required. string
The OCID of an artifact
DeployPipelineStages This property is required. List<GetDeploymentDeployPipelineArtifactItemDeployPipelineStage>
List of stages.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
DeployArtifactId This property is required. string
The OCID of an artifact
DeployPipelineStages This property is required. []GetDeploymentDeployPipelineArtifactItemDeployPipelineStage
List of stages.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployArtifactId This property is required. String
The OCID of an artifact
deployPipelineStages This property is required. List<GetDeploymentDeployPipelineArtifactItemDeployPipelineStage>
List of stages.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployArtifactId This property is required. string
The OCID of an artifact
deployPipelineStages This property is required. GetDeploymentDeployPipelineArtifactItemDeployPipelineStage[]
List of stages.
displayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deploy_artifact_id This property is required. str
The OCID of an artifact
deploy_pipeline_stages This property is required. Sequence[devops.GetDeploymentDeployPipelineArtifactItemDeployPipelineStage]
List of stages.
display_name This property is required. str
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployArtifactId This property is required. String
The OCID of an artifact
deployPipelineStages This property is required. List<Property Map>
List of stages.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.

GetDeploymentDeployPipelineArtifactItemDeployPipelineStage

Items This property is required. List<GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployPipelineArtifactItemDeployPipelineStageItem

DeployStageId This property is required. string
The OCID of the stage.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
DeployStageId This property is required. string
The OCID of the stage.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. String
The OCID of the stage.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. string
The OCID of the stage.
displayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deploy_stage_id This property is required. str
The OCID of the stage.
display_name This property is required. str
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. String
The OCID of the stage.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.

GetDeploymentDeployPipelineEnvironment

Items This property is required. List<GetDeploymentDeployPipelineEnvironmentItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployPipelineEnvironmentItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployPipelineEnvironmentItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployPipelineEnvironmentItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployPipelineEnvironmentItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployPipelineEnvironmentItem

DeployEnvironmentId This property is required. string
The OCID of an Environment
DeployPipelineStages This property is required. List<GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage>
List of stages.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
DeployEnvironmentId This property is required. string
The OCID of an Environment
DeployPipelineStages This property is required. []GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage
List of stages.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployEnvironmentId This property is required. String
The OCID of an Environment
deployPipelineStages This property is required. List<GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage>
List of stages.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployEnvironmentId This property is required. string
The OCID of an Environment
deployPipelineStages This property is required. GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage[]
List of stages.
displayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deploy_environment_id This property is required. str
The OCID of an Environment
deploy_pipeline_stages This property is required. Sequence[devops.GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage]
List of stages.
display_name This property is required. str
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployEnvironmentId This property is required. String
The OCID of an Environment
deployPipelineStages This property is required. List<Property Map>
List of stages.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.

GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStage

Items This property is required. List<GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployPipelineEnvironmentItemDeployPipelineStageItem

DeployStageId This property is required. string
The OCID of the stage.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
DeployStageId This property is required. string
The OCID of the stage.
DisplayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. String
The OCID of the stage.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. string
The OCID of the stage.
displayName This property is required. string
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deploy_stage_id This property is required. str
The OCID of the stage.
display_name This property is required. str
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.
deployStageId This property is required. String
The OCID of the stage.
displayName This property is required. String
Deployment identifier which can be renamed and is not necessarily unique. Avoid entering confidential information.

GetDeploymentDeployStageOverrideArgument

Items This property is required. List<GetDeploymentDeployStageOverrideArgumentItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeployStageOverrideArgumentItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeployStageOverrideArgumentItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeployStageOverrideArgumentItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeployStageOverrideArgumentItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeployStageOverrideArgumentItem

DeployStageId This property is required. string
The OCID of the stage.
Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
DeployStageId This property is required. string
The OCID of the stage.
Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
deployStageId This property is required. String
The OCID of the stage.
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.
deployStageId This property is required. string
The OCID of the stage.
name This property is required. string
Name of the step.
value This property is required. string
value of the argument.
deploy_stage_id This property is required. str
The OCID of the stage.
name This property is required. str
Name of the step.
value This property is required. str
value of the argument.
deployStageId This property is required. String
The OCID of the stage.
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.

GetDeploymentDeploymentArgument

Items This property is required. List<GetDeploymentDeploymentArgumentItem>
A list of stage predecessors for a stage.
Items This property is required. []GetDeploymentDeploymentArgumentItem
A list of stage predecessors for a stage.
items This property is required. List<GetDeploymentDeploymentArgumentItem>
A list of stage predecessors for a stage.
items This property is required. GetDeploymentDeploymentArgumentItem[]
A list of stage predecessors for a stage.
items This property is required. Sequence[devops.GetDeploymentDeploymentArgumentItem]
A list of stage predecessors for a stage.
items This property is required. List<Property Map>
A list of stage predecessors for a stage.

GetDeploymentDeploymentArgumentItem

Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
Name This property is required. string
Name of the step.
Value This property is required. string
value of the argument.
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.
name This property is required. string
Name of the step.
value This property is required. string
value of the argument.
name This property is required. str
Name of the step.
value This property is required. str
value of the argument.
name This property is required. String
Name of the step.
value This property is required. String
value of the argument.

GetDeploymentDeploymentExecutionProgress

DeployStageExecutionProgress This property is required. Dictionary<string, string>
Map of stage OCIDs to deploy stage execution progress model.
TimeFinished This property is required. string
Time the deployment is finished. Format defined by RFC3339.
TimeStarted This property is required. string
Time the deployment is started. Format defined by RFC3339.
DeployStageExecutionProgress This property is required. map[string]string
Map of stage OCIDs to deploy stage execution progress model.
TimeFinished This property is required. string
Time the deployment is finished. Format defined by RFC3339.
TimeStarted This property is required. string
Time the deployment is started. Format defined by RFC3339.
deployStageExecutionProgress This property is required. Map<String,String>
Map of stage OCIDs to deploy stage execution progress model.
timeFinished This property is required. String
Time the deployment is finished. Format defined by RFC3339.
timeStarted This property is required. String
Time the deployment is started. Format defined by RFC3339.
deployStageExecutionProgress This property is required. {[key: string]: string}
Map of stage OCIDs to deploy stage execution progress model.
timeFinished This property is required. string
Time the deployment is finished. Format defined by RFC3339.
timeStarted This property is required. string
Time the deployment is started. Format defined by RFC3339.
deploy_stage_execution_progress This property is required. Mapping[str, str]
Map of stage OCIDs to deploy stage execution progress model.
time_finished This property is required. str
Time the deployment is finished. Format defined by RFC3339.
time_started This property is required. str
Time the deployment is started. Format defined by RFC3339.
deployStageExecutionProgress This property is required. Map<String>
Map of stage OCIDs to deploy stage execution progress model.
timeFinished This property is required. String
Time the deployment is finished. Format defined by RFC3339.
timeStarted This property is required. String
Time the deployment is started. Format defined by RFC3339.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi