oci logo
Oracle Cloud Infrastructure v0.12.0, Mar 17 23

oci.DevOps.getBuildPipelineStage

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

Retrieves a stage based on the stage ID provided in the request.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testBuildPipelineStage = Oci.DevOps.GetBuildPipelineStage.Invoke(new()
    {
        BuildPipelineStageId = oci_devops_build_pipeline_stage.Test_build_pipeline_stage.Id,
    });

});
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.GetBuildPipelineStage(ctx, &devops.GetBuildPipelineStageArgs{
			BuildPipelineStageId: oci_devops_build_pipeline_stage.Test_build_pipeline_stage.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
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.GetBuildPipelineStageArgs;
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 testBuildPipelineStage = DevOpsFunctions.getBuildPipelineStage(GetBuildPipelineStageArgs.builder()
            .buildPipelineStageId(oci_devops_build_pipeline_stage.test_build_pipeline_stage().id())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_build_pipeline_stage = oci.DevOps.get_build_pipeline_stage(build_pipeline_stage_id=oci_devops_build_pipeline_stage["test_build_pipeline_stage"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testBuildPipelineStage = oci.DevOps.getBuildPipelineStage({
    buildPipelineStageId: oci_devops_build_pipeline_stage.test_build_pipeline_stage.id,
});
variables:
  testBuildPipelineStage:
    fn::invoke:
      Function: oci:DevOps:getBuildPipelineStage
      Arguments:
        buildPipelineStageId: ${oci_devops_build_pipeline_stage.test_build_pipeline_stage.id}

Using getBuildPipelineStage

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 getBuildPipelineStage(args: GetBuildPipelineStageArgs, opts?: InvokeOptions): Promise<GetBuildPipelineStageResult>
function getBuildPipelineStageOutput(args: GetBuildPipelineStageOutputArgs, opts?: InvokeOptions): Output<GetBuildPipelineStageResult>
def get_build_pipeline_stage(build_pipeline_stage_id: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetBuildPipelineStageResult
def get_build_pipeline_stage_output(build_pipeline_stage_id: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetBuildPipelineStageResult]
func GetBuildPipelineStage(ctx *Context, args *GetBuildPipelineStageArgs, opts ...InvokeOption) (*GetBuildPipelineStageResult, error)
func GetBuildPipelineStageOutput(ctx *Context, args *GetBuildPipelineStageOutputArgs, opts ...InvokeOption) GetBuildPipelineStageResultOutput

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

public static class GetBuildPipelineStage 
{
    public static Task<GetBuildPipelineStageResult> InvokeAsync(GetBuildPipelineStageArgs args, InvokeOptions? opts = null)
    public static Output<GetBuildPipelineStageResult> Invoke(GetBuildPipelineStageInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBuildPipelineStageResult> getBuildPipelineStage(GetBuildPipelineStageArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:DevOps/getBuildPipelineStage:getBuildPipelineStage
  arguments:
    # arguments dictionary

The following arguments are supported:

BuildPipelineStageId string

Unique stage identifier.

BuildPipelineStageId string

Unique stage identifier.

buildPipelineStageId String

Unique stage identifier.

buildPipelineStageId string

Unique stage identifier.

build_pipeline_stage_id str

Unique stage identifier.

buildPipelineStageId String

Unique stage identifier.

getBuildPipelineStage Result

The following output properties are available:

BuildPipelineId string

The OCID of the build pipeline.

BuildPipelineStageId string
BuildPipelineStagePredecessorCollections List<GetBuildPipelineStageBuildPipelineStagePredecessorCollection>

The collection containing the predecessors of a stage.

BuildPipelineStageType string

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

BuildSourceCollections List<GetBuildPipelineStageBuildSourceCollection>

Collection of build sources.

BuildSpecFile string

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

CompartmentId string

The OCID of the compartment where the pipeline is created.

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"}

DeliverArtifactCollections List<GetBuildPipelineStageDeliverArtifactCollection>

Specifies an array of artifacts that need to be pushed to the artifactory stores.

DeployPipelineId string

A target deployment pipeline OCID that will run in this stage.

Description string

Optional description about the build stage.

DisplayName string

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

Image string

Image name for the build environment.

IsPassAllParametersEnabled bool

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

PrimaryBuildSource string

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

PrivateAccessConfigs List<GetBuildPipelineStagePrivateAccessConfig>

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

ProjectId string

The OCID of the DevOps project.

StageExecutionTimeoutInSeconds int

Timeout for the build stage execution. Specify value in seconds.

State string

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

TimeUpdated string

The time the stage was updated. Format defined by RFC3339.

WaitCriterias List<GetBuildPipelineStageWaitCriteria>

Specifies wait criteria for the Wait stage.

BuildPipelineId string

The OCID of the build pipeline.

BuildPipelineStageId string
BuildPipelineStagePredecessorCollections []GetBuildPipelineStageBuildPipelineStagePredecessorCollection

The collection containing the predecessors of a stage.

BuildPipelineStageType string

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

BuildSourceCollections []GetBuildPipelineStageBuildSourceCollection

Collection of build sources.

BuildSpecFile string

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

CompartmentId string

The OCID of the compartment where the pipeline is created.

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"}

DeliverArtifactCollections []GetBuildPipelineStageDeliverArtifactCollection

Specifies an array of artifacts that need to be pushed to the artifactory stores.

DeployPipelineId string

A target deployment pipeline OCID that will run in this stage.

Description string

Optional description about the build stage.

DisplayName string

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

Image string

Image name for the build environment.

IsPassAllParametersEnabled bool

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

PrimaryBuildSource string

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

PrivateAccessConfigs []GetBuildPipelineStagePrivateAccessConfig

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

ProjectId string

The OCID of the DevOps project.

StageExecutionTimeoutInSeconds int

Timeout for the build stage execution. Specify value in seconds.

State string

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

TimeUpdated string

The time the stage was updated. Format defined by RFC3339.

WaitCriterias []GetBuildPipelineStageWaitCriteria

Specifies wait criteria for the Wait stage.

buildPipelineId String

The OCID of the build pipeline.

buildPipelineStageId String
buildPipelineStagePredecessorCollections List<GetBuildPipelineStageBuildPipelineStagePredecessorCollection>

The collection containing the predecessors of a stage.

buildPipelineStageType String

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

buildSourceCollections List<GetBuildPipelineStageBuildSourceCollection>

Collection of build sources.

buildSpecFile String

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

compartmentId String

The OCID of the compartment where the pipeline is created.

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"}

deliverArtifactCollections List<GetBuildPipelineStageDeliverArtifactCollection>

Specifies an array of artifacts that need to be pushed to the artifactory stores.

deployPipelineId String

A target deployment pipeline OCID that will run in this stage.

description String

Optional description about the build stage.

displayName String

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

image String

Image name for the build environment.

isPassAllParametersEnabled Boolean

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

primaryBuildSource String

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

privateAccessConfigs List<GetBuildPipelineStagePrivateAccessConfig>

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

projectId String

The OCID of the DevOps project.

stageExecutionTimeoutInSeconds Integer

Timeout for the build stage execution. Specify value in seconds.

state String

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

timeUpdated String

The time the stage was updated. Format defined by RFC3339.

waitCriterias List<GetBuildPipelineStageWaitCriteria>

Specifies wait criteria for the Wait stage.

buildPipelineId string

The OCID of the build pipeline.

buildPipelineStageId string
buildPipelineStagePredecessorCollections GetBuildPipelineStageBuildPipelineStagePredecessorCollection[]

The collection containing the predecessors of a stage.

buildPipelineStageType string

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

buildSourceCollections GetBuildPipelineStageBuildSourceCollection[]

Collection of build sources.

buildSpecFile string

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

compartmentId string

The OCID of the compartment where the pipeline is created.

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"}

deliverArtifactCollections GetBuildPipelineStageDeliverArtifactCollection[]

Specifies an array of artifacts that need to be pushed to the artifactory stores.

deployPipelineId string

A target deployment pipeline OCID that will run in this stage.

description string

Optional description about the build stage.

displayName string

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

image string

Image name for the build environment.

isPassAllParametersEnabled boolean

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

primaryBuildSource string

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

privateAccessConfigs GetBuildPipelineStagePrivateAccessConfig[]

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

projectId string

The OCID of the DevOps project.

stageExecutionTimeoutInSeconds number

Timeout for the build stage execution. Specify value in seconds.

state string

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

timeUpdated string

The time the stage was updated. Format defined by RFC3339.

waitCriterias GetBuildPipelineStageWaitCriteria[]

Specifies wait criteria for the Wait stage.

build_pipeline_id str

The OCID of the build pipeline.

build_pipeline_stage_id str
build_pipeline_stage_predecessor_collections GetBuildPipelineStageBuildPipelineStagePredecessorCollection]

The collection containing the predecessors of a stage.

build_pipeline_stage_type str

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

build_source_collections GetBuildPipelineStageBuildSourceCollection]

Collection of build sources.

build_spec_file str

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

compartment_id str

The OCID of the compartment where the pipeline is created.

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"}

deliver_artifact_collections GetBuildPipelineStageDeliverArtifactCollection]

Specifies an array of artifacts that need to be pushed to the artifactory stores.

deploy_pipeline_id str

A target deployment pipeline OCID that will run in this stage.

description str

Optional description about the build stage.

display_name str

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

image str

Image name for the build environment.

is_pass_all_parameters_enabled bool

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

primary_build_source str

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

private_access_configs GetBuildPipelineStagePrivateAccessConfig]

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

project_id str

The OCID of the DevOps project.

stage_execution_timeout_in_seconds int

Timeout for the build stage execution. Specify value in seconds.

state str

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

time_updated str

The time the stage was updated. Format defined by RFC3339.

wait_criterias GetBuildPipelineStageWaitCriteria]

Specifies wait criteria for the Wait stage.

buildPipelineId String

The OCID of the build pipeline.

buildPipelineStageId String
buildPipelineStagePredecessorCollections List<Property Map>

The collection containing the predecessors of a stage.

buildPipelineStageType String

Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.

buildSourceCollections List<Property Map>

Collection of build sources.

buildSpecFile String

The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.

compartmentId String

The OCID of the compartment where the pipeline is created.

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"}

deliverArtifactCollections List<Property Map>

Specifies an array of artifacts that need to be pushed to the artifactory stores.

deployPipelineId String

A target deployment pipeline OCID that will run in this stage.

description String

Optional description about the build stage.

displayName String

Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

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 that is immutable on creation.

image String

Image name for the build environment.

isPassAllParametersEnabled Boolean

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

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.

primaryBuildSource String

Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.

privateAccessConfigs List<Property Map>

Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.

projectId String

The OCID of the DevOps project.

stageExecutionTimeoutInSeconds Number

Timeout for the build stage execution. Specify value in seconds.

state String

The current state of the stage.

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

The time the stage was created. Format defined by RFC3339.

timeUpdated String

The time the stage was updated. Format defined by RFC3339.

waitCriterias List<Property Map>

Specifies wait criteria for the Wait stage.

Supporting Types

GetBuildPipelineStageBuildPipelineStagePredecessorCollection

Items List<GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

Items []GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem[]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<Property Map>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem

Id string

Unique identifier that is immutable on creation.

Id string

Unique identifier that is immutable on creation.

id String

Unique identifier that is immutable on creation.

id string

Unique identifier that is immutable on creation.

id str

Unique identifier that is immutable on creation.

id String

Unique identifier that is immutable on creation.

GetBuildPipelineStageBuildSourceCollection

Items List<GetBuildPipelineStageBuildSourceCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

Items []GetBuildPipelineStageBuildSourceCollectionItem

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<GetBuildPipelineStageBuildSourceCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageBuildSourceCollectionItem[]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageBuildSourceCollectionItem]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<Property Map>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

GetBuildPipelineStageBuildSourceCollectionItem

Branch string

Branch name.

ConnectionId string

Connection identifier pertinent to Bitbucket Server source provider

ConnectionType string

The type of source provider.

Name string

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

RepositoryId string

The DevOps code repository ID.

RepositoryUrl string

URL for the repository.

Branch string

Branch name.

ConnectionId string

Connection identifier pertinent to Bitbucket Server source provider

ConnectionType string

The type of source provider.

Name string

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

RepositoryId string

The DevOps code repository ID.

RepositoryUrl string

URL for the repository.

branch String

Branch name.

connectionId String

Connection identifier pertinent to Bitbucket Server source provider

connectionType String

The type of source provider.

name String

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

repositoryId String

The DevOps code repository ID.

repositoryUrl String

URL for the repository.

branch string

Branch name.

connectionId string

Connection identifier pertinent to Bitbucket Server source provider

connectionType string

The type of source provider.

name string

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

repositoryId string

The DevOps code repository ID.

repositoryUrl string

URL for the repository.

branch str

Branch name.

connection_id str

Connection identifier pertinent to Bitbucket Server source provider

connection_type str

The type of source provider.

name str

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

repository_id str

The DevOps code repository ID.

repository_url str

URL for the repository.

branch String

Branch name.

connectionId String

Connection identifier pertinent to Bitbucket Server source provider

connectionType String

The type of source provider.

name String

Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

repositoryId String

The DevOps code repository ID.

repositoryUrl String

URL for the repository.

GetBuildPipelineStageDeliverArtifactCollection

Items List<GetBuildPipelineStageDeliverArtifactCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

Items []GetBuildPipelineStageDeliverArtifactCollectionItem

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<GetBuildPipelineStageDeliverArtifactCollectionItem>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageDeliverArtifactCollectionItem[]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items GetBuildPipelineStageDeliverArtifactCollectionItem]

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

items List<Property Map>

Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.

GetBuildPipelineStageDeliverArtifactCollectionItem

ArtifactId string

Artifact identifier that contains the artifact definition.

ArtifactName string

Name of the artifact specified in the build_spec.yaml file.

ArtifactId string

Artifact identifier that contains the artifact definition.

ArtifactName string

Name of the artifact specified in the build_spec.yaml file.

artifactId String

Artifact identifier that contains the artifact definition.

artifactName String

Name of the artifact specified in the build_spec.yaml file.

artifactId string

Artifact identifier that contains the artifact definition.

artifactName string

Name of the artifact specified in the build_spec.yaml file.

artifact_id str

Artifact identifier that contains the artifact definition.

artifact_name str

Name of the artifact specified in the build_spec.yaml file.

artifactId String

Artifact identifier that contains the artifact definition.

artifactName String

Name of the artifact specified in the build_spec.yaml file.

GetBuildPipelineStagePrivateAccessConfig

NetworkChannelType string

Network channel type.

NsgIds List<string>

An array of network security group OCIDs.

SubnetId string

The OCID of the subnet where VNIC resources will be created for private endpoint.

NetworkChannelType string

Network channel type.

NsgIds []string

An array of network security group OCIDs.

SubnetId string

The OCID of the subnet where VNIC resources will be created for private endpoint.

networkChannelType String

Network channel type.

nsgIds List<String>

An array of network security group OCIDs.

subnetId String

The OCID of the subnet where VNIC resources will be created for private endpoint.

networkChannelType string

Network channel type.

nsgIds string[]

An array of network security group OCIDs.

subnetId string

The OCID of the subnet where VNIC resources will be created for private endpoint.

network_channel_type str

Network channel type.

nsg_ids Sequence[str]

An array of network security group OCIDs.

subnet_id str

The OCID of the subnet where VNIC resources will be created for private endpoint.

networkChannelType String

Network channel type.

nsgIds List<String>

An array of network security group OCIDs.

subnetId String

The OCID of the subnet where VNIC resources will be created for private endpoint.

GetBuildPipelineStageWaitCriteria

WaitDuration string

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

WaitType string

Wait criteria type.

WaitDuration string

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

WaitType string

Wait criteria type.

waitDuration String

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

waitType String

Wait criteria type.

waitDuration string

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

waitType string

Wait criteria type.

wait_duration str

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

wait_type str

Wait criteria type.

waitDuration String

The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.

waitType String

Wait criteria type.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.